为什么 mount 在 localhost 中不是 运行?

why moint is not running in local host?

我正在尝试 运行 监控我的 ubuntu 系统。我遵循了 link 中给出的完整步骤。即(https://www.tecmint.com/how-to-install-and-setup-monit-linux-process-and-services-monitoring-program/) 一切都很好我没有收到任何错误但是当我尝试在浏览器上加载它时(无法访问此站点本地主机拒绝连接)在浏览器上显示我没有收到任何错误解决方案。

[未注释的代码][1]

set httpd port 2812 and
     use address 10.0.4.115  # only accept connection from localhost
     allow 10.0.4.115        # allow localhost to connect to the server and
     allow admin:monit      # require user 'admin' with password 'monit'
     allow @monit
     allow @users readonly




kundan@CHEALPHADT005:~$ sudo monit status
Monit 5.25.1 uptime: 2h 35m

System 'CHEALPHADT005'
  status                       OK
  monitoring status            Monitored
  monitoring mode              active
  on reboot                    start
  load average                 [0.43] [0.45] [0.22]
  cpu                          0.7%us 0.4%sy 0.5%wa
  memory usage                 2.3 GB [29.6%]
  swap usage                   0 B [0.0%]
  uptime                       2h 35m
  boot time                    Fri, 15 Feb 2019 12:21:56
  data collected               Fri, 15 Feb 2019 14:57:15

您似乎在两个地方编辑了 127.0.0.1 并用 10.0.4.115 替换了它。 阅读您在上面发布的前 3 行旁边的评论。

我建议您删除 'use address' 行并制作多个允许行。

set httpd port 2812
  allow localhost
  allow 10.0.3.115