Install Plex Media Server on CentOS 7

Select distribution:
Traducciones al Español
Estamos traduciendo nuestros guías y tutoriales al Español. Es posible que usted esté viendo una traducción generada automáticamente. Estamos trabajando con traductores profesionales para verificar las traducciones de nuestro sitio web. Este proyecto es un trabajo en curso.
Create a Linode account to try this guide with a $ credit.
This credit will be applied to any valid services used during your first  days.

Plex is a feature-rich media library platform that allows you to organize and stream your digital video and audio from virtually anywhere. Basic Plex features are free, while the paid Plex Pass adds additional features.

This guide demonstrates how to set up Plex Media Server on a Linode running CentOS 7, and how to connect client devices. A Plex media server could benefit from large amounts of disk space, so consider using Linode’s Block Storage service with this setup.

Before you Begin

  • You will need root access to your Linode, or a limited user account with sudo privilege.

  • Set your system’s hostname and time zone.

  • Plex requires that you create an account to make use of the service, and provides additional features such as DVR capability and offline viewing if you pay for their premium Plex Pass offering. To complete this guide, you will need a Plex account.

Install and Configure Plex

  1. Go to Plex’s download page. Select Linux, and then click Choose Distribution.

  2. In the menu that appears, right-click on CentOS 64-bit (RPM for CentOS 7 or newer) and copy the download link. Use cURL to download the .rpm package directly to your Linode. The example below uses the current link for CentOS at the time of writing. Be sure you install the most recent version of Plex.

    curl -O https://downloads.plex.tv/plex-media-server/1.14.1.5488-cc260c476/plexmediaserver-1.14.1.5488-cc260c476.x86_64.rpm
    
  3. Update your system and install Plex:

    sudo yum update
    sudo yum install plexmediaserver*.rpm
    
  4. Enable Plex Media Server to start on reboot and then start the server:

    sudo systemctl enable plexmediaserver
    sudo systemctl start plexmediaserver
    
  5. Finally, you’ll create the directories that will store your Plex media. In this example we’ll create library directories for movies and television within a plex-media directory. These will be located within your user’s /home:

    cd ~/
    mkdir -p plex-media/movies && mkdir plex-media/television
    
  6. Administration of the Plex server is performed via its web interface. Before you can connect to the web interface from your workstation, you will first need to create an SSH tunnel to your Linode. Substitute user with the sudo user on your Linode, and 192.0.2.0 with its IP address.

    ssh user@192.0.2.0 -L 8888:localhost:32400
    
  7. Go to http://localhost:8888/web in a web browser and log in to Plex.

  8. Give your Plex server a name. Be sure to leave the Allow me to access my media outside my home box checked, and click Next:

Add and Organize Media

  1. Now that you’ve signed into Plex, you should see the following page. Click the Add Library button to start setting up your media libraries.

  2. Select your library type, and click Next.

  3. Navigate to the corresponding media directory that you created previously, then click Add.

  4. You can add additional libraries by clicking the + symbol next to the Libraries list on the Plex side bar:

    Plex web interface - additional Library

  5. Add your media to the appropriate directories. Be sure to review Plex’s naming conventions for media files to ensure that your files are identified correctly.

DLNA is a protocol that incorporates Universal Plug and Play (or UPnP) standards for digital media sharing across devices. Any DLNA device or application can have full unrestricted access to your Plex content, so disable DLNA if you won’t be using it.

From the Plex web interface, click the wrench icon in the upper right corner and then click DLNA in the left sidebar. Uncheck Enable the DLNA server and click Save Changes.

Connect to your Plex Server

Now that your server is set up, you’re ready to connect to it from a Plex client. Plex is supported by a number of different platforms and you can find a full list of client applications here.

The examples provided here will use Plex Media Player for macOS.

  1. Download the appropriate media player application or install it via your device’s app store.

  2. Sign in to the Plex client app using the same Plex account as your server.

  3. Your Plex client will have a dropdown menu where you can select your server. Once it’s selected, you can navigate to the library with the content that you wish to view:

More Information

You may wish to consult the following resources for additional information on this topic. While these are provided in the hope that they will be useful, please note that we cannot vouch for the accuracy or timeliness of externally hosted materials.

This page was originally published on


Your Feedback Is Important

Let us know if this guide was helpful to you.


Join the conversation.
Read other comments or post your own below. Comments must be respectful, constructive, and relevant to the topic of the guide. Do not post external links or advertisements. Before posting, consider if your comment would be better addressed by contacting our Support team or asking on our Community Site.
The Disqus commenting system for Linode Docs requires the acceptance of Functional Cookies, which allow us to analyze site usage so we can measure and improve performance. To view and create comments for this article, please update your Cookie Preferences on this website and refresh this web page. Please note: You must have JavaScript enabled in your browser.