Sonarr Multiple Instances | Servarr Wiki (https://use.fontawesome.com/releases/v5.10.0/css/all.css) (/_assets/css/app.cd94ee14df75f4c2a9da.css) (/_assets/css/tags.9d379e682b01062fe3e8.css) (/_assets/css/vendor.45a5dcfa0ba005b18f08.css) (/_assets/css/theme0.2d5fc139e64d75a2ac94.css) (/_assets/css/mdi.c5234666a42449d3f1e3.css) (/_assets/js/login.js?1643500888) (/_assets/js/ui-extra.js?1643500888) (/_assets/js/editor.js?1643500888) (/_assets/css/comments.a57cbfd8541ec9647407.css) (/_assets/css/ui-extra.aa824cc7416f7a5a8b5c.css) (/_assets/css/admin.3fc27c433e103b2adef0.css) Servarr Wiki Search... (/t) (/login) Browse (/) Home Applications (/en/radarr) Radarr (/en/sonarr) Sonarr (/en/lidarr) Lidarr (/en/readarr) Readarr (/en/whisparr) Whisparr (/en/prowlarr) Prowlarr Contribute (/en/donate) Donate (/en/bug-report) Report a Bug Suggest a Feature (https://github.com/Servarr/Wiki) Github Support (https://radarr.video/discord) Discord / (/en/sonarr) sonarr / (/en/sonarr/installation) installation / (/en/sonarr/installation/multiple-instances) multiple-instances Sonarr Multiple Instances Requirements and how to install multiple instances of Sonarr Page Contents Multiple Instances Windows Multiple Instances Linux Multiple Instances Docker Multiple Instances Last edited by bakerboy44801 07/13/2024 ¶ Multiple Instances It is possible to run multiple instances of Sonarr. This is typically done when one wants a 4K and 1080p copy of a series.(https://trash-guides.info/Sonarr/Tips/Sync-2-radarr-sonarr/) Note that you can configure Sonarr to use a second Sonarr as a list. This is helpful if you wish to keep both in sync. Windows Multiple Instances Linux Multiple Instances Docker Multiple Instances The following requirements should be noted: If non-docker, the same binaries (program files) should be used If non-docker, all instances must have a -data= or /data= argument passed If non-docker, different ports must be used If docker, different external ports must be used Different download client categories must be used Different root folders must be used. If non-docker, disable automatic updates on all but 1 instance. ¶ Windows Multiple Instances This guide will show you how to run multiple instances of Sonarr on Windows using only one base installation. This guide was put together using Windows 10; if you are using a previous version of Windows (7, 8, etc.) you may need to adjust some things. This guide also assumes that you have installed Sonarr to the default directory, and your second instance of Sonarr will be called Sonarr-4K. Feel free to change things to fit your own installations, though. ¶ Service (Windows) ¶ Prerequisites (Service) You must have Sonarr already installed You must have (http://nssm.cc) NSSM (Non-Sucking Service Manager installed. To install, download the latest release (2.24 at the time of writing) and copy either the 32-bit or 64-bit nssm.exe file to C:/windows/system32. If you aren’t sure if you have a 32-bit or 64-bit system, check Settings => System => About => System type. ¶ Configuring Sonarr Service Open a Command Prompt administrator window. (To run as an admin,right click on the Command Prompt icon and choose “Run asadministrator.”) If Sonarr is running, stop the service by running nssm stop Sonarr in Command Prompt. Now we have to edit the existing Sonarr instance to explicitly pointto its data directory. The default command is as follows:sc config Sonarr binpath= "C:\ProgramData\Sonarr\bin\Sonarr.exe -data=C:\ProgramData\Sonarr" This command tells the original instance of Sonarr to explicitly useC:\ProgramData\Sonarr for its data directory. If you didn't use thedefault Sonarr install, or if your data folder is somewhere else, youmay have to change your paths here. ¶ Creating Sonarr-4K Service Create a new folder where you’d like Sonarr-4K to live. Most use a similar place such asC:\ProgramData\Sonarr-4K Back in Command Prompt, create the new Sonarr-4K service using nssm install Sonarr-4K . A popup window will open where you can type yourparameters for the new instance. For this example, we will use thefollowing: Path: C:\ProgramData\Sonarr\bin\Sonarr.exe Startup directory: C:\ProgramData\Sonarr\bin Arguments: -data=C:\ProgramData\Sonarr-4K Note that Arguments points to the new folder created in step 1.This is crucial, as it keeps all the data files from both instances inseparate locations. Click Install service . The window should close and the servicewill now be available to run. Continue to Configuring Sonarr-4k ¶ Tray App (Windows) ¶ Prerequisites (Tray App) You must have Sonarr already installed Sonarr must be configured with a /data= argument to allow multiple instances Navigate to the Startup Folder for the current user %appdata%\Microsoft\Windows\Start Menu\Programs\Startup and edit the existing shortcut if needed. ¶ Creating Sonarr-4K Tray App Right click and Create New Shortcut Path: C:\ProgramData\Sonarr\bin\Sonarr.exe /data=C:\ProgramData\Sonarr-4K Give the shortcut a unique name such as Sonarr-4K and finish the wizard. Double click the new shortcut to run and test. Continue to Configuring Sonarr-4k ¶ Configuring Sonarr-4k Regardless of if you used the Service Method or the Tray App: Stop both services and both Apps Start Sonarr-4k (Service or Tray App) Open up Sonarr-4k and Navigate within the app to (/sonarr/settings/#host) Settings => General => Host Change Port Number from 8989 to a different port e.g. 7879 so Sonarr and Sonarr4k do not conflict You should now be able to start both apps Continue to Dealing with Updates ¶ Dealing with Updates Disable automatic updates in one of your instances If one Sonarr instance is updated, both instances will shutdown and only the updated one will start again. To fix this, you will have to manually start the other instance, or you may want to look into using the below powershell script to address the problem. ¶ Windows Port Checker and Restarter PowerShell Script When you use two Sonarr instances and one of it is updating, it will kill all instances. Only the one which is updating will come back online. The below powershell script should be configured as a scheduled task. It checks the ports and if one is not online, it will (re-)start the scheduled task to launch Sonarr. Create a new File and name it SonarrInstancesChecker.ps1 with the below code. Edit the script with your actual service names, IP, and ports. (https://www.thewindowsclub.com/schedule-task-in-windows-7-task-scheduler) Create a scheduled task to run the script on a repeating schedule. Security Options: Enable Run with highest privileges Otherwise the script will be unable to manipulate services Trigger: On Launch Repeat task every: 5 or 10 minutes Action: Start a Program Program/script: powershell Argument: -File D:\SonarrInstancesChecker.ps1 Be sure to use the full path to your script's location ################################################################################################ ### SonarrInstancesChecker.ps1 ### ################################################################################################ ### Keeps multiple Sonarr Instances up by checking the port ### ### Please use Sonarr´s Discord or Reddit for support! ### ### https://wiki.servarr.com/sonarr/installation#windows-multi ### ################################################################################################ ### Version: 1.1 ### ### Updated: 2020-10-22 ### ### Author: reloxx13 ### ################################################################################################ ### SET YOUR CONFIGURATION HERE ### # Set your host ip and port correctly and use your service or scheduledtask names! # (string) The type how Sonarr is starting # "Service" (default) Service process is used # "ScheduledTask" Task Scheduler is used $startType = 'Service' # (bool) Writes the log to C:\Users\YOURUSERNAME\log.txt when enabled # $false (default) # $true $logToFile = $false $instances = @( [pscustomobject] @{ # Instance 1 Name = 'Sonarr-V3' ; # (string) Service or Task name (default: Sonarr-V3) IP = '192.168.178.12' ; # (string) Server IP where Sonarr runs (default: 192.168.178.12) Port = '7873' ; # (string) Server Port where Sonarr runs (default: 7873) } [pscustomobject] @{ # Instance 2 Name = 'Sonarr-4K' ; # (string) Service or Task name (default: Sonarr-4K) IP = '192.168.178.12' ; # (string) Server IP where Sonarr runs (default: 192.168.178.12) Port = '7874' ; # (string) Server Port where Sonarr runs (default: 7874) } # If needed you can add more instances here... by uncommenting out the below lines # [pscustomobject]@{ # Instance 3 # Name='Sonarr-3D'; # (string) Service or Task name (default: Sonarr-3D) # IP='192.168.178.12'; # (string) Server IP where Sonarr runs (default: 192.168.178.12) # Port='7875'; # (string) Server Port where Sonarr runs (default: 7875) # } ) ### DONT CHANGE ANYTHING BELOW THIS LINE ### ### # This function will write to a log file or in console output ### function Write-Log { #Will write to C:\Users\YOURUSERNAME\log.txt Param ( $Message , $Path = "$env :USERPROFILE\log.txt" ) function TS { Get-Date - Format 'hh:mm:ss' } #Console output Write-Output "[$( TS) ]$Message " #File Output if ( $logToFile ) { "[$( TS) ]$Message " | Tee-Object - FilePath $Path - Append | Write-Verbose } } Write-Log 'START =====================' $instances | ForEach-Object { Write-Log "Check $( $_ . Name) $( $_ . IP) :$( $_ . Port) " $PortOpen = ( Test-NetConnection $_ . IP - Port $_ . Port - WarningAction SilentlyContinue ) . TcpTestSucceeded if ( ! $PortOpen ) { Write-Log "Port $( $_ . Port) is closed, restart $( $startType ) $( $_ . Name) !" if ( $startType -eq 'Service' ) { Get-Service - Name $_ . Name | Stop-Service Get-Service - Name $_ . Name | Start-Service } elseif ( $startType -eq 'ScheduledTask' ) { Get-ScheduledTask - TaskName $_ . Name | Stop-ScheduledTask Get-ScheduledTask - TaskName $_ . Name | Start-ScheduledTask } else { Write-Log '[ERROR] STARTTYPE UNKNOWN! USE Service or ScheduledTask !' } } else { Write-Log "Port $( $_ . Port) is open!" } } Write-Log 'END =====================' Copy ¶ Linux Multiple Instances (https://github.com/ComputerByte/sonarr4k) Swizzin Users Non-Swizzin Users Ensure your first instance has the -data= argument passed. Temporarily stop your first instance, so you can change the second instance's port systemctl stop sonarr Disable automatic updates on one of your Sonarr Instances` Below is an example script to create a Sonarr4K instance. The below systemd creation script will use a data directory of /var/lib/sonarr4k/ . Ensure the directory exists or modify it as needed. cat << EOF| sudo tee /etc/systemd/system/sonarr4k.service > /dev/null [Unit] Description=Sonarr4k Daemon After=syslog.target network.target [Service] User=sonarr Group=media Type=simple ExecStart=/opt/Sonarr/Sonarr -nobrowser -data=/var/lib/sonarr4k/ TimeoutStopSec=20 KillMode=process Restart=on-failure [Install] WantedBy=multi-user.target EOF Copy Reload systemd: sudo systemctl -q daemon-reload Copy Enable the Sonarr4k service: sudo systemctl enable --now -q sonarr4k Copy ¶ Docker Multiple Instances Simply spin up a second Docker container with a different name, ensuring the above requirements are met. Powered by (https://wiki.js.org) Wiki.js