I installed monit and tried to check the status using below command.
monit status
But end up with below error.
monit: error connecting to the monit daemon
How can I fix this?
I installed monit and tried to check the status using below command.
monit status
But end up with below error.
monit: error connecting to the monit daemon
How can I fix this?
edit vim /etc/monit/monitrc
, starting from line 118 and uncomment below lines
set httpd port 2812
use address localhost # only accept connection from localhost
allow localhost # allow localhost to connect to the server and
allow admin:monit
sudo monit reload
to take affect
Sometimes the problem appears because loopback interface is down . We should bring up the lo interface as follow
root@server:~# ifup lo
sudo ifconfig
shows interfaces up or down. If down, then run what you have in answer. But: I have never witnessed loopback going down in all my years w/ Linux. (since ~'93) –
Lawford © 2022 - 2024 — McMap. All rights reserved.