Updated Troubleshooting (markdown)

ochawkeye
2015-08-06 13:40:09 -05:00
parent 89ae9d23b8
commit faba59e339

@@ -19,9 +19,15 @@ When running a Plex Media Server on a QNAP, Plex writes logs into a non-shared l
## Solution:
A symbolic link to this location can easily be created from a folder that is shared.
1. ssh in QNAP
2. create a directory in a shared folder that will be accessible: `mkdir /share/MD0_DATA/PATH/TO/VALID/SHARE/FOLDER/PlexLogs`
3. make symbolic link between unshared log folder and new shared folder `ln -s "/share/MD0_DATA/.qpkg/PlexMediaServer/Library/Plex Media Server/Logs/" "/share/MD0_DATA/PATH/TO/VALID/SHARE/FOLDER/PlexLogs"`
4. your new location is now usable in `Settings` > `Extra Settings` > `Plex Logs` > `Logs Folder`: `\\<ipaddress>\PATH\TO\VALID\SHARE\FOLDER\PlexLogs`
1. ssh in QNAP
2. create a directory in a shared folder that will be accessible:
```mkdir /share/MD0_DATA/PATH/TO/VALID/SHARE/FOLDER/PlexLogs```
3. make symbolic link between unshared log folder and new shared folder:
```
ln -s "/share/MD0_DATA/.qpkg/PlexMediaServer/Library/Plex Media Server/Logs/" "/share/MD0_DATA/PATH/TO/VALID/SHARE/FOLDER/PlexLogs"
```
4. your new location is now usable in `Settings` > `Extra Settings` > `Plex Logs` > `Logs Folder`:
`\\<ipaddress>\PATH\TO\VALID\SHARE\FOLDER\PlexLogs`
See: [Tweaking4All](http://www.tweaking4all.com/qnap/combine-qnap-shared-folders/) for more detailed information.