Skip to content

Commit 1d68ecd

Browse files
committed
Update links
1 parent f6ebcd3 commit 1d68ecd

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

docs/general/how-to-get-support.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,22 @@
11
# How to get support
22

3-
1. Join our [discord server](https://discord.gg/YWrKVTn), read our [support policy](../misc/support-policy.md), and read the description of each channel before asking for support.
3+
1. Join our [Discord server](https://linuxserver.io/discord), read our [Support Policy](../misc/support-policy.md), and read the description of each channel before asking for support.
44
2. SSH to your server and run the following command to create an alias that gathers the information we require:
5+
56
```bash
67
alias lsiosupport='function _lsiosupport(){ uname -a > lsiosupport.txt; docker -v >> lsiosupport.txt; cat /etc/os-release >> lsiosupport.txt; docker inspect --format "$(wget -qO- https://docs.linuxserver.io/assets/run.tpl)" $1 >> lsiosupport.txt; docker logs $1 >> lsiosupport.txt; }; _lsiosupport'
78
```
9+
810
The alias gathers the following information: OS details, docker version, run command, and container logs.
911
3. Execute the alias with a container name:
12+
1013
```bash
1114
lsiosupport <container-name>
1215
```
16+
1317
Add `sudo` in the beginning if your user can't access docker.
1418
4. A file called `lsiosupport.txt` will be created in the current folder, open it with a text editor.
1519
5. Redact sensitive information such as: passwords, domains, emails, personal information, etc.
1620
**Don't redact information we need for troubleshooting such as: IPs, volumes, local paths, etc.**
1721
6. Upload the file to a pastebin like [PrivateBin](https://privatebin.net/) or [Gist](https://gist.github.com/).
18-
7. Post the link along with a detailed description of your issue in the appropriate discord support channel.
22+
7. Post the link along with a detailed description of your issue in the appropriate discord support channel.

0 commit comments

Comments
 (0)