poyboard.blogg.se

Plex media server ubuntu setup
Plex media server ubuntu setup






plex media server ubuntu setup
  1. PLEX MEDIA SERVER UBUNTU SETUP HOW TO
  2. PLEX MEDIA SERVER UBUNTU SETUP MOVIE
  3. PLEX MEDIA SERVER UBUNTU SETUP INSTALL
  4. PLEX MEDIA SERVER UBUNTU SETUP UPDATE
  5. PLEX MEDIA SERVER UBUNTU SETUP PASSWORD

# Comment to prevent HTTP to HTTPS redirect com, use Cloudflare.Īfter you have created your sub-domain, add the following to the server block file: NameCheap has the best cheap domains going around and if you prefer a. You will need an active domain name which can be purchased for as little as 1 to 2 dollars if you do not have one. Next, create a virtual host for your subdomain: sudo nano /etc/apache2/sites-available/nf To use Apache as a reverse proxy, you need to enable the module with the following command: sudo a2enmod proxy proxy_http headers proxy_wstunnel Verify the status of Apache: sudo systemctl status apache2 To enable Apache to be started on boot, use the following command: sudo systemctl enable apache2Įxample output if successful: Synchronizing state of rvice with SysV service script with /lib/systemd/systemd-sysv-install.Įxecuting: /lib/systemd/systemd-sysv-install enable apache2

PLEX MEDIA SERVER UBUNTU SETUP INSTALL

If you want to use Nginx, skip this part and go to the Setup Nginx as a Reverse Proxy.įirst, install Apache: sudo apt install apache2 -yīy default, Apache should be enabled if it is not activated. In this example, the tutorial will set up an Apache proxy server. You can set up a reverse proxy to access Jellyfin from a remote computer or network. If you need to assign permission to individual media directories or files, use the following: sudo setfacl -m u:jellyfin:rx /media/mymediadrive/example-name-of-file-or-directory Option 1 – Setup Apache as a Reverse Proxy sudo setfacl -R -m u:jellyfin:rx /media/mymediadrive

PLEX MEDIA SERVER UBUNTU SETUP MOVIE

Now, you have a few options with the setfalc command, but realistically you won’t be going through giving each movie and tv show permissions instead, the easier way is to use the recursive flag (-R) that will provide Jellyfin access it needs for everything located in the directory and subdirectories. To install, run the following command: sudo apt install acl -y This is being covered since it has the potential, later on, to be more secure, and you can control access at a very detailed level compared to the default way of chown and chgrp.

plex media server ubuntu setup

You can use chown or chgrp commands however, you will learn to use the setfacl command for the tutorial. Jellyfin will require to have read and execute permission on your media directories. Once you have reset the initial setup, revisit the HTTP://127.0.0.1:8096 and restart the process again.

plex media server ubuntu setup

Restart the Jellyfin server: sudo systemctl restart jellyfin Open the system.xml file: sudo nano /etc/jellyfin/system.xmlĬhange the following, which is located on line 4: true If you made an error during the initial setup, you could revert with the following steps: If you set up media during the installation, it will automatically appear. Now that you have the apt repository sorted, you can now proceed to install the Media server with the following command: sudo apt install jellyfinĮxample output with extra dependencies that will be installed:

PLEX MEDIA SERVER UBUNTU SETUP UPDATE

To finish off, update your repository listing to recognize the new additions as follows: sudo apt update Install Jellyfin The next step is to import the repository: echo "deb focal main" | sudo tee /etc/apt//jellyfin.list If imported correctly, you will get the following output in your terminal: OK Import the Repository Import GPG Keyįirst, you will need to import the GPG key to verify the authenticity of the package without it, the installation will fail: wget -O - | sudo apt-key add. Jellyfin does not come in Ubuntu 20.04’s default repository, so you must import the Jellyfin GPG Key and repository. If you are unsure, just run the command it will not harm you. You will need to make sure you have the following packages installed to successful install the Jellyfin Media server: sudo apt install apt-transport-https ca-certificates gnupg2 curl git -y

PLEX MEDIA SERVER UBUNTU SETUP PASSWORD

Use the following command with the root password to log in to use the root account.

PLEX MEDIA SERVER UBUNTU SETUP HOW TO

To set up an existing or new sudo account, visit our tutorial on How to Add a User to Sudoers on Ubuntu.

plex media server ubuntu setup

To verify sudo status on your account: sudo whoamiĮxample output showing sudo status: ~]$ sudo whoami








Plex media server ubuntu setup