From 787de0dc839d7916eeb31d469dc6a7f0f4f0b3a0 Mon Sep 17 00:00:00 2001 From: James Smith Date: Sun, 7 Aug 2016 23:41:21 +1000 Subject: [PATCH] This is to account for mono using a 64 bit library. we are adding a symlink so that mono/sonarr can find it. Without this sonarr webui will not load. --- Installation-CentOS-7.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/Installation-CentOS-7.md b/Installation-CentOS-7.md index 97a1507..56b1989 100644 --- a/Installation-CentOS-7.md +++ b/Installation-CentOS-7.md @@ -80,3 +80,21 @@ Please note these were the steps taken by an experienced user. systemctl enable sonarr.service systemctl start sonarr.service + +Troubleshooting. + +Symptom: +The service has loaded and when browsing to the site it is blank. + +Run the following to test for missing mono links. +`sudo systemctl stop sonarr + sudo systemctl start sonarr + journalctl -xe | grep libMonoPosixHelper.so` + +If you see a line similar to +_System.Net.WebException: /usr/lib/libMonoPosixHelper.so ---> System.DllNotFoundException: /usr/lib/libMonoPosixHelper_ +The resolution below will fix that. + +Resolution: +Run the following command +'sudo ln -s /usr/lib64/libMonoPosixHelper.so /usr/lib/libMonoPosixHelper.so' \ No newline at end of file