Monit 守护进程 - 连接到 monit 守护进程时出错
Monit daemon - error connecting to the monit daemon
我安装了 monit 并尝试使用以下命令检查状态。
monit status
但最终出现以下错误。
monit: error connecting to the monit daemon
我该如何解决这个问题?
编辑 vim /etc/monit/monitrc
,从第 118 行开始,取消下面行的注释
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
生效
有时会出现此问题,因为环回接口已关闭。我们应该调出lo界面如下
root@server:~# ifup lo
我安装了 monit 并尝试使用以下命令检查状态。
monit status
但最终出现以下错误。
monit: error connecting to the monit daemon
我该如何解决这个问题?
编辑 vim /etc/monit/monitrc
,从第 118 行开始,取消下面行的注释
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
生效
有时会出现此问题,因为环回接口已关闭。我们应该调出lo界面如下
root@server:~# ifup lo