Sonarr Installation error

Hello all,

I installed sonarr and opened it up on my browser, but there is only a blank page with a title saying “Sonarr Ver.”

Here is my log:

https://pastebin.com/zAMCnKfx

Any ideas?

What do the following fields show in /home/${username}/.config/NzbDrone/config.xml

<UrlBase>
<BindAddress>

here is what is written there;

https://pastebin.com/tXxdjHGY

Could you update that (as it’s broken) to the following and then issue a restart of Sonarr with systemctl restart sonarr@${username}

<Config>
  <Port>8989</Port>
  <UrlBase>sonarr</UrlBase>
  <BindAddress>127.0.0.1</BindAddress>
  <SslPort>9898</SslPort>
  <EnableSsl>False</EnableSsl>
  <LogLevel>Info</LogLevel>
  <Branch>master</Branch>
  <LaunchBrowser>False</LaunchBrowser>
</Config>

To combat this problem, we will soon be implementing templates on the build of the applications. The problem is occurring from the apps not creating the needed configs and/or the sed commands not writing to them in time… thus these fields are being left blank.

As an update to this, I have pushed a commit that should address this issue:

I’ve tested it a couple of times on my own production server as well as a sample VM and it successfully installs the needed configs. Service runs without issue on initial install.

1 Like

thank you JMSolo! It is now working :slight_smile: