Error displaying nginx service status

Please tell me, after updating to Hestia 1.88, nginx is marked in red in the list of running services, as if it was stopped. Although in reality it is up and running.



Tell me how to fix this problem? Before installing the update, I saved the old nginx.conf; the notifications told me that I needed to update to the new one. I did it.

1 Like

Hello @SVADO,

IF you are using Debian 10 or an old Ubuntu version, it is a bug that is already fixed for next Hestia version.

If you want to fix it in version 1.8.8:

Create a backup of /usr/local/hestia/bin/v-list-sys-services and once done, edit the file:

In line 90 change this:
pids=$(pidof -d '|' $name)

by this:
pids=$(pidof $name | tr ' ' '|')

In line 92 change this:
pids=$(pidof -d '|' -x $name)

by this:
pids=$(pidof -x $name | tr ' ' '|')

And check again nginx service in Web UI.

1 Like

Thank you very much. Can you please tell me if the next version of Hestia with this fix will be released on Debian 10? And please tell me, is this problem only in the visual display? Are all functions working properly?

Yes.

Yes, the problem is only in visual display and as far as I know, all should be working fine.

Thank you very much for the answer.

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.