ubuntu16.04安装smokeping监控
Posted 远方在呼唤
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ubuntu16.04安装smokeping监控相关的知识,希望对你有一定的参考价值。
ubuntu16.04安装smokeping监控
1、先更新apt源,因为ubuntu默认的apt源是国外源,安装软件特别慢
root@i-vr3xgjnd:~# cd /etc/apt
root@i-vr3xgjnd:/etc/apt# cp sources.list sources.list.bak #做好备份,以防万一
root@i-vr3xgjnd:/etc/apt# vi sources.list #注释掉国外的源,新增清华源
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-updates main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-updates main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-backports main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-backports main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-security main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-security main restricted universe multiverse
root@i-vr3xgjnd:/etc/apt# apt-get update -y #更新一下源
2、安装smokeping
root@i-vr3xgjnd:~# apt-get install smokeping -y
3、 root@i-vr3xgjnd:~# vi /etc/smokeping/config.d/pathnames #先注释掉sendmail,后续有需要再进行配置
4、root@i-vr3xgjnd:~# vi /etc/smokeping/config.d/General #箭头所指,需要填入您的主机IP
5、root@i-vr3xgjnd:~# vi /etc/apache2/conf-available/serve-cgi-bin.conf #加入红框中的内容
6、root@i-vr3xgjnd:~# vi /etc/smokeping/config.d/Targets #按照+号进行分级,一级目录,二级目录,三级目录
7、重启相应服务
root@i-vr3xgjnd:~# a2enmod cgi
root@i-vr3xgjnd:~# /etc/init.d/smokeping restart
root@i-vr3xgjnd:~# /etc/init.d/apache2 restart
root@i-vr3xgjnd:~# systemctl enable smokeping
root@i-vr3xgjnd:~# systemctl enable apache2
8、测试
root@i-vr3xgjnd:~# curl 127.0.0.1/cgi-bin/smokeping.cgi
浏览器测试,如图,中文字体出现乱码,需要加入中文字体包
root@i-vr3xgjnd:~# apt-get install ttf-wqy-zenhei -y #加入中文字体包
再刷新浏览器,即正常
以上是关于ubuntu16.04安装smokeping监控的主要内容,如果未能解决你的问题,请参考以下文章