Couple of Plex Setup tips - Printable Version +- Linux Lite Forums (https://www.freecinema2022.gq/forums) +-- Forum: Software - Support (https://www.freecinema2022.gq/forums/forumdisplay.php?fid=5) +--- Forum: Tutorials (https://www.freecinema2022.gq/forums/forumdisplay.php?fid=21) +--- Thread: Couple of Plex Setup tips (/showthread.php?tid=2317) |
Couple of Plex Setup tips - Duckeenie - 10-20-2015 Literally a couple of tips for issues that people might have with Plex that aren't covered very well by the manual. (apologies if it's a little rudimentary.) Plex Can't Find Your Media. This is an issue that arises from Plex not having the correct permissions to access your files. It seems there are numerous ways to overcome this but as a newcomer I found the simplest solution involved typing the following into the terminal: Code: sudo nano /etc/default/plexmediaserver Look for the line that says Code: PLEX_MEDIA_SERVER_USER=plex and replace the value plex with your username. Save the file, exit Nano. Next we restart the server to take advantage of the changes: Code: sudo service plexmediaserver restart At this point Plex should have the required permissions to be able to access your media and setup your libraries. Unable to Connect to Server From Local Device. This is a firewall issues that we need to address. Back to the terminal to open firewall ports then: Code: sudo ufw allow 32400/tcp Following this we need to open Plex and navigate to Settings>Server>Remote Access and sign in. Immediately below this you have an option to manually specify a port: Enter 32400 and click the Retry button. At this point as long as you have setup your libraries you should be good to connect to your media from any local device that runs Plex. Re: Couple of Plex Setup tips - Valtam - 10-20-2015 Thanks for the share Duckeenie Re: Couple of Plex Setup tips - bigmanstrat - 09-07-2016 Thanks for this. I had been having real problems getting plex to work after upgrading to Linux Lite 3.0, I should have realised it was a firewall issue. I couldn't remember having to do anything to the firewall to get access to the server over my LAN on Linux Lite 2.6 or 2.8 but setting the rule on the firewall for 3.0 has resolved the issue. |