Difference between revisions of "Readarr Installation"
Bakerboy448 (talk | contribs) m (Changed protection level for "Readarr Installation" ([Edit=Allow only autoconfirmed users] (indefinite) [Move=Allow only autoconfirmed users] (indefinite))) |
Latest revision as of 15:14, 12 April 2021
Installing
Windows
Please see the the Readarr website for the Windows installer.
OSX
Readarr is in a pre-alpha state. Instructions will be built once Readarr is stable (i.e. alpha).
Linux
Debian/Ubuntu
.NET Core Install
You'll need curl and sqlite.
sudo apt install curl sqlite3
Manual Install
Go to the Readarr discord and locate the binaries
Note: this assumes you created a user named readarr
Download this file onto your system:
wget --content-disposition '{Readarr is pre-alpha; link hidden from the public}'
Uncompress:
tar -xvzf Readarr*.linux-core-x64.tar.gz
Move to your preferred install location (typically /opt/Readarr/
sudo mv Readarr/ /opt
Finally, make sure you grant the needed permission to your install directory:
sudo chown readarr:readarr /opt/Readarr
You can start Readarr with the following command:
/opt/Readarr/Readarr -nobrowser
Prowlarr
OSX
Detailed instructions coming "soon" For now please see our website for details: https://prowlarr.com/#downloads-v3-macos
Debian/Ubuntu
.NET Core Install
You'll need curl and sqlite.
sudo apt install curl sqlite3
Manual Install
Note: this assumes you created a user named prowlarr
In the example screenshot here, you can see multiple options. Choose the option that matches your OS and processor best. For most users, this would be .linux-core-x64.tar.gz
selected via arch=x64
in the url.
For:
- ARM use
arch=arm
- ARM64 use
arch=arm64
- AMD64 use
arch=x64
Download this file onto your system: (Note: The link below will target the Linux .NET Core x64 file. Replace if needed with the file you chose previously)
wget --content-disposition 'https://prowlarr.servarr.com/v1/update/nightly/updatefile?os=linux&runtime=netcore&arch=x64'
Uncompress:
tar -xvzf Prowlarr*.linux*.tar.gz
Move to your preferred install location (typically /opt/Prowlarr/
sudo mv Prowlarr/ /opt
Finally, make sure you grant the needed permission to your install directory:
sudo chown prowlarr:prowlarr /opt/Prowlarr
You can start Prowlarr with the following command:
/opt/Prowlarr/Prowlarr -nobrowser
Code Blocks
Radarr
Preparing the Unit Service File
[Unit] Description=Radarr Daemon After=syslog.target network.target [Service] # Change the user and group variables here. User=radarr Group=radarr Type=simple #Update the data path ExecStart=/opt/Radarr/Radarr -nobrowser -data=/path/to/appdata/for/Radarr/ TimeoutStopSec=20 KillMode=process Restart=always [Install] WantedBy=multi-user.target
Sonarr
Preparing the Unit Service File
Manual installs methods are unsupported and you'll need to determine the process yourself.
Lidarr
Preparing the Unit Service File
[Unit] Description=Lidarr Daemon After=syslog.target network.target [Service] # Change the user and group variables here. User=lidarr Group=lidarr Type=simple # NetCore install: # Update the data path ExecStart=/opt/Lidarr/Lidarr -nobrowser -data=/path/to/appdata/for/Lidarr/ TimeoutStopSec=20 KillMode=process Restart=always [Install] WantedBy=multi-user.target
Readarr
Preparing the Unit Service File
[Unit] Description=Readarr Daemon After=syslog.target network.target [Service] # Change the user and group variables here. User=readarr Group=readarr Type=simple # NetCore install: # Update the data path ExecStart=/opt/Readarr/Readarr -nobrowser -data=/path/to/appdata/for/Readarr/ TimeoutStopSec=20 KillMode=process Restart=always [Install] WantedBy=multi-user.target
Prowlarr
Preparing the Unit Service File
[Unit] Description=Prowlarr Daemon After=syslog.target network.target [Service] # Change the user and group variables here. User=prowlarr Group=prowlarr Type=simple #Update the data path ExecStart=/opt/Prowlarr/Prowlarr -nobrowser -data=/path/to/appdata/for/Prowlarr/ TimeoutStopSec=20 KillMode=process Restart=always [Install] WantedBy=multi-user.target
Auto Start Using Systemd
Most modern Linux distributions have switched to systemd, which involves a simple unit service file which gets enabled and started. It is important to remember that in Linux, capitalization matters. User
account names and Group
names are typically all lowercase, as are the directory structures mapped to them as part of the home directory.
Preparing the Unit Service File
Several items may need to be changed to match your installation:
User
should match the service account that readarr will run as.Group
should match the service account group that readarr will run as.ExecStart
has several items that should match your installation/opt/Readarr/Readarr
- Executable Path Default location is
/opt/Readarr/Readarr
, but you may need to update if you installed Readarr elsewhere. - Data Directory Default location is
-data=/home/$USER/.config/Readarr/
, but you may need to update if you want to keep your database and settings elsewhere.
- Executable Path Default location is
The unit service file should be named Readarr.service
and the best place for it is /etc/systemd/system/
. Alternative locations like /usr/lib/systemd/system/
and /lib/systemd/system/
may depend on the distribution used.
This example unit assumes that the User
and Group
are both readarr
, Readarr's executable is placed in /opt/Readarr/
. Please update the data path to where you want the database, logs, and other metadata stored.
[Unit] Description=Readarr Daemon After=syslog.target network.target [Service] # Change the user and group variables here. User=readarr Group=readarr Type=simple # NetCore install: # Update the data path ExecStart=/opt/Readarr/Readarr -nobrowser -data=/path/to/appdata/for/Readarr/ TimeoutStopSec=20 KillMode=process Restart=always [Install] WantedBy=multi-user.target
Verify Directory Permissions
Ensure the User
that will be running Readarr has access to both the executable directory and data directory.
Running the command ls -lad /directory/
will show the permissions for that folder.
Example:
$ ls -lad /opt/Readarr drwxr-xr-x 6 readarr readarr 24576 Nov 28 21:30 /opt/Readarr/ $ ls -lad /home/$User/.config/Readarr/ drwxr-xr-x 6 readarr readarr 24576 Nov 28 21:30 /home/$User/.config/Readarr/
Enabling and starting the Unit Service File
Once you have created Readarr.service
, you will want to enable the service:
sudo systemctl enable Readarr.service
You are now ready to start Readarr. You can do so with the start
command:
sudo systemctl start Readarr.service
If you want to verify Readarr is running, you can run the status
command:
$ sudo systemctl status Readarr.service ● Readarr.service - ReadarrService Loaded: loaded (/usr/lib/systemd/system/Readarr.service; enabled; vendor preset: disabled) Active: active (running) since Tue 2017-03-07 10:23:44 PST; 5min ago Main PID: 19978 (Readarr) Tasks: 16 (limit: 4915) Memory: 114.6M CPU: 9.331s CGroup: /system.slice/Readarr.service └─19978 /opt/Readarr/Readarr -nobrowser -data=/path/to/data/.config/Readarr/ Mar 07 10:23:44 apollo systemd[1]: Started Readarr Service.
NGINX Reverse Proxy
A reverse proxy allows you to set up Readarr so you can access it from the web without using the port number. Rather than mydomain.com:8787 you would use mydomain.com/Readarr instead.
It is assumed you have NGINX installed.
Create a text file named Readarr.conf and place it in your default NGINX App directory, typically /etc/nginx/conf.d/apps
- Readarr Reverse Proxy
- Be sure to set your Base-URL in Readarr
location /readarr { proxy_pass http://127.0.0.1:8787/readarr; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; proxy_http_version 1.1; proxy_no_cache $cookie_session; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection $http_connection; # Allow the Readarr API location /readarr/api { auth_request off; proxy_pass http://127.0.0.1:8787/readarr/api; } }
Please note: It is important to ensure that the line proxy_set_header Connection $http_connection;
is accurate. The NGINX documentation recommends setting this to Upgrade
rather than $http_connection;
but this will NOT work.
Once you have saved the file, test your NGINX config:
sudo nginx -t
Which should show this:
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok nginx: configuration file /etc/nginx/nginx.conf test is successful
Now you can have NGINX reload it's configuration to use the new file:
sudo nginx -s reload
Finally, make sure you add your URL Base to Readarr. This should match what you have next to the word Location in the Readarr.conf file, with the leading slash, likely this: /readarr
The URL base can be set here: https://wiki.servarr.com/Readarr_Settings#Host
Docker
Please refer to TRaSH's Guide.
Docker on unRAID
- Installation of Readarr is quite simple when it comes to unRAID as they have made installing Docker containers a breeze.
Simply head on over to the community applications store on the top bar of your browser.
In the search field type in Readarr
Select which docker image you would like to install. There are several to choose from
Depending on which container you go with will determine the steps in which you take. Some containers come preloaded with volumes mapped already. This is really up to your liking how you would like your container volumes to be laid out. It is highly recommended to follow the guide listed here for your volume mapping
Once you have selected which container you are going to go with, you will need to either create the volumes for Readarr to be able to use or simply use the pre-filled ones. (Highly recommended to remove the pre-filled and use your own, to remove the pre-filled ones).
To create new volumes simply select the
Add another Path, Port, Variable, Label or Device
text at the bottom above the Apply button.
Once the new window appears you will want to use the drop down box next to Config Type: and make sure that it is set to Path.
From here you will want to fill out all pertinent information:
Name: The name of this path, this can be any unique name more like a note to know what this path is for.
Container Path: This will be the path that Readarr will see inside the container
/data
is a favorite
Host Path: This is the path to the host (unRAID) machine, This will be
/mnt/user/<Your User Share>
The last three items Default Value:, Access Mode", and Description: Can be left alone.
Click ADD
Last thing to check is to make sure Host Port for 8787 is filled in with
8787
, UNLESS This port causes any conflicts with any other container. If it does please choose a different port that is not in use.
Click APPLY
Now the Readarr's container is being downloaded, once complete simply click the OK button at the bottom of the new pop up window
Click DOCKER on the top row of your browser.
Now all you will need to do is simply left click on your newly created container and select WebUI.
Now a new browser tab should show up with Readarr running in all its glory.
Depending on which container you select you may recieve a pop up asking you to Choose A Branch To Install when in doubt go with the Default :latest
branch
To remove the pre-filled paths simply select the toggle in the upper right from Basic to Advanced view then scroll down to the pre-filled path and click Remove
NOTE If you follow the Docker Guide you will only need one Volume path to be made as all information that Readarr will need will be in one share /mnt/user/data