centos7.2环境下安装smokeping对网络状态进行监控





安装smokeping建议用centos7,用centos6.5一直卡在smokeping那里,下载不了perl的扩展插件,可能是因为centos6出来太久,适配的安装包和插件已经迁移了





yum groupinstall "Compatibility libraries" "Base" "Development tools" -y

 

yum -y install cpan perl perl-FCGI perl-CGI perl-Digest-HMAC perl-Net-Telnet perl-Net-OpenSSH perl-Net-SNMP perl-LDAP perl-Net-DNS perl-IO-Pty-Easy perl-Test-Simple perl-Sys-Syslog perl-libwww-perl perl-IO-Socket-SSL perl-Socket6 perl-CGI-SpeedyCGI perl-FCGI
perl-Time-HiRes perl-ExtUtils-MakeMaker rrdtool rrdtool-perl curl fping httpd httpd-devel gcc make wget libxml2-devel libpng-devel glib pango pango-devel freetype freetype-devel fontconfig cairo cairo-devel libart_lgpl libart_lgpl-devel mod_fcgid screen





安装echoping

tar xvf echoping-6.0.2.tar.gz

cd echoping-6.0.2

./configure --prefix=/usr/local/echoping





报错:

configure: error: Missing popt library, get it from ftp://ftp.rpm.org/pub/rpm/dist/rpm-x.y.z

解决办法:

yum install -y popt-devel





继续报错:

configure: error: Get the GNU libidn library (http://www.josefsson.org/libidn/) in order to use Unicode - multi-script - domain names or use --without-libidn to disable it





解决办法:

./configure --prefix=/usr/local/echoping --with-ssl --without-libidn





报错:

configure: error: Get the OpenSSL library (http://www.openssl.org/)

解决办法:

yum install -y openssl openssl-devel





make && make install





2.3 安装smokeping

下载地址:http://oss.oetiker.ch/smokeping/pub/smokeping-2.6.11.tar.gz

tar -xvf smokeping-2.6.11.tar.gz

cd smokeping-2.6.11

 

#export PERL5LIB=/usr/local/smokeping/thirdparty/lib/perl5/

./setup/build-perl-modules.sh /usr/local/smokeping/thirdparty

./configure --prefix=/usr/local/smokeping

gmake install





****************************************************************





如果./configure过程中提示找不到某些perl扩展,如下所示

checking checking for perl module‘Config::Grammar‘... Can‘t locate Config/Grammar.pm in @INC (@INC contains:/usr/local/smokeping/thirdparty/lib/perl5 /usr/local/lib64/perl5 /usr/local/share/perl5/usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5/usr/share/perl5
.) at -e line 1.

BEGIN failed--compilation aborted at -e line 1.

请使用以下命令安装对应模块:

perl -MCPAN -e 'install Config::Grammar'

注意:有时候需要重复安装几次才能装上模块。





注意要选择国内的的模块源,不然速度很慢。





****************************************************************





2.4 创建相关目录和日志文件(因为这里的web服务器使用的是httpd,所以相关文件的属主属组均为apache)





cd /usr/local/smokeping

mkdir cache data var 

touch /var/log/smokeping.log 

chown apache.apache cache/ data/ var/ /var/log





2.5 创建相关配置文件





#fcgi文件

cp /usr/local/smokeping/htdocs/smokeping.fcgi.dist /usr/local/smokeping/htdocs/smokeping.fcgi

#主配置文件

cp /usr/local/smokeping/etc/config.dist /usr/local/smokeping/etc/config





2.6 修改配置文件





#指定cgi的url地址为本机

sed -i 's#cgiurl   = http://some.url/smokeping.cgi#cgiurl   = http://192.168.3.13/smokeping.cgi#g' /usr/local/smokeping/etc/config

#指定检测的时间为60秒

sed -i 's#step     = 300#step     = 60#g' /usr/local/smokeping/etc/config 

#指定ping的次数为60

sed -i 's#pings    = 20#pings    = 60#g' /usr/local/smokeping/etc/config

 

将step和pings都设置为60表示每60秒ping60次。





2.7 修改字符集和字体支持中文





vim /usr/local/smokeping/etc/config

***Presentation *** # 加在 ***Presentation *** 后面

charset = utf-8





yum -y install wqy-zenhei-fonts





vim /usr/local/smokeping/lib/Smokeping/Graphs.pm





        my$val = 0;





        formy $host (@hosts){





            my ($graphret,$xs,$ys) = RRDs::graph





           ("dummy",





           '--start', $tasks[0][1],





           '--end', $tasks[0][2],





            '--font TITLE:20"WenQuanYiZen Hei Mono"',





           "DEF:maxping=$cfg->{General}{datadir}${host}.rrd:median:AVERAGE",





           'PRINT:maxping:MAX:%le');





           my $ERROR = RRDs::error();





2.8 修改apache配置文件增加登录验证





htpasswd -c /usr/local/smokeping/htdocs/htpasswd smokeping

chmod 600 /usr/local/smokeping/etc/smokeping_secrets.dist





2.9 修改httpd.conf增加smokeping的web界面





在httpd.conf末尾添加如下内容





vim /etc/httpd/conf/httpd.conf

 

#########changed by jack 2016/11/02##############

Alias /cache "/usr/local/smokeping/cache/"

Alias /cropper "/usr/local/smokeping/htdocs/cropper/"

Alias /smokeping "/usr/local/smokeping/htdocs/smokeping.fcgi"

<Directory "/usr/local/smokeping">

AllowOverride None

Options All

AddHandler cgi-script .fcgi .cgi

AllowOverride AuthConfig

Order allow,deny

Allow from all

AuthName "Smokeping"

AuthType Basic

AuthUserFile /usr/local/smokeping/htdocs/htpasswd

Require valid-user

DirectoryIndex smokeping.fcgi

</Directory>





2.10 添加监控对象





vim /usr/local/smokeping/etc/config





*** Targets ***

++ Localhost

menu = Localhost

title = Localhost

alerts = someloss

#slaves = boomer slave2

host = 192.168.3.13





2.11 添加监控节点





注意:每次修改配置文件后需要重启smokeping进程





/usr/local/smokeping/bin/smokeping --restart



/usr/local/smokeping/bin/smokeping --reload



pkill smokeping

/usr/local/smokeping/bin/smokeping





/usr/local/smokeping/bin/smokeping --restart





报错:

WARNING: Hostname 'james.address' does currently not resolve to an IPv6 or IPv4 address

ERROR: Can not read pid from /usr/local/smokeping/var/smokeping.pid: No such file or directory





解决:

touch /usr/local/smokeping/var/smokeping.pid





WARNING: Hostname 'james.address' does currently not resolve to an IPv6 or IPv4 address

Note: logging to syslog as local0/info.

Can't kill a non-numeric process ID at /usr/local/smokeping/bin/../lib/Smokeping.pm line 3680.

可以正常访问:http://192.168.3.13/smokeping









监控节点样例如下,注意+是第一层,++是第二层,+++ 是第三层:





vim /usr/local/smokeping/etc/config

加在最后





+ Other

menu = 三大网络监控

title = 监控统计

++ dianxin

menu = 电信网络监控

title = 电信网络监控列表

host = /Other/dianxin/dianxin-bj /Other/dianxin/dianxin-hlj /Other/dianxin/dianxin-tj /Other/dianxin/dianxin-sc /Other/dianxin/dianxin-sh /Other/dianxin/dianxin-gz

+++ dianxin-bj

menu = 北京电信

title = 北京电信

alerts = someloss

host = 202.96.199.133

 

+++ dianxin-hlj

menu = 黑龙江电信

title = 黑龙江电信

alerts = someloss

host = 219.147.198.242

 

+++ dianxin-tj

menu = 天津电信

title = 天津电信

alerts = someloss

host = 219.150.32.132

 

+++ dianxin-sc

menu = 四川电信

title = 四川电信

alerts = someloss

host = 61.139.2.69

 

+++ dianxin-sh

menu = 上海电信

title = 上海电信

alerts = someloss

host = 116.228.111.118

 

+++ dianxin-gz

menu = 广东电信

title = 广东电信

alerts = someloss

host = 113.111.211.22

 

++ liantong

menu = 联通网络监控

title = 联通网络监控列表

host = /Other/liantong/liantong-bj /Other/liantong/liantong-hlj /Other/liantong/liantong-tj  /Other/liantong/liantong-sc /Other/liantong/liantong-sh /Other/liantong/liantong-gz

 

+++ liantong-bj

menu = 北京联通

title = 北京联通

alerts = someloss

host = 61.135.169.121

 

+++ liantong-hlj

menu = 黑龙江联通

title = 黑龙江联通

alerts = someloss

host = 202.97.224.69

 

+++ liantong-tj

menu = 天津联通

title = 天津联通

alerts = someloss

host = 202.99.96.68

 

+++ liantong-sc

menu = 四川联通

title = 四川联通

alerts = someloss

host = 119.6.6.6

 

+++ liantong-sh

menu = 上海联通

title = 上海联通

alerts = someloss

host = 210.22.84.3

 

+++ liantong-gz

menu = 广东联通

title = 广东联通

alerts = someloss

host = 221.5.88.88

 

++ yidong

menu = 移动网络监控

title = 移动网络监控列表

host = /Other/yidong/yidong-bj /Other/yidong/yidong-hlj /Other/yidong/yidong-tj /Other/yidong/yidong-sc  /Other/yidong/yidong-sh /Other/yidong/yidong-gz

 

+++ yidong-bj

menu = 北京移动

title = 北京移动

alerts = someloss

host = 221.130.33.52

 

+++ yidong-hlj

menu = 黑龙江移动

title = 黑龙江移动

alerts = someloss

host = 211.137.241.35

 

+++ yidong-tj

menu = 天津移动

title = 天津移动

alerts = someloss

host = 211.137.160.5

 

+++ yidong-sc

menu = 四川移动

title = 四川移动

alerts = someloss

host = 218.201.4.3

 

+++ yidong-sh

menu = 上海移动

title = 上海移动

alerts = someloss

host = 117.131.19.23

 

+++ yidong-gz

menu = 广东移动

title = 广东移动

alerts = someloss

host = 211.136.192.6





smokeping会根据配置文件中配置监控节点的内容,在/usr/local/smokeping/data目录下生成对应的moniter文件夹,其下包含website子文件夹。

# tree /usr/local/smokeping/data/

/usr/local/smokeping/data/

├── Other

│   ├── dianxin

│   │   ├── dianxin-bj.rrd

│   │   ├── dianxin-gz.rrd

│   │   ├── dianxin-hlj.rrd

│   │   ├── dianxin-sc.rrd

│   │   ├── dianxin-sh.rrd

│   │   └── dianxin-tj.rrd

│   ├── liantong

│   │   ├── liantong-bj.rrd

│   │   ├── liantong-gz.rrd

│   │   ├── liantong-hlj.rrd

│   │   ├── liantong-sc.rrd

│   │   ├── liantong-sh.rrd

│   │   └── liantong-tj.rrd

│   └── yidong

│       ├── yidong-bj.rrd

│       ├── yidong-gz.rrd

│       ├── yidong-hlj.rrd

│       ├── yidong-sc.rrd

│       ├── yidong-sh.rrd

│       └── yidong-tj.rrd

└── Test

    ├── James~boomer.rrd

    ├── James.rrd

    ├── James~slave2.rrd

    └── Localhost.rrd





5 directories, 22 files





2.12 启动服务并测试





systemctl start httpd

/usr/local/smokeping/bin/smokeping





在浏览器中访问 http://192.168.3.13/smokeping 输入刚才配置的验证账号smokeing和密码smokeping即可





可以看到添加的节点的相关信息。





可以看到添加的监控点的ping状态





附录:





更改CPAN源的方法:





# cpan

Sorry, we have to rerun the configuration dialogfor CPAN.pm due to

some missing parameters. Configuration will bewritten to

 <</root/.cpan/CPAN/MyConfig.pm>>

 

 

CPAN.pm requires configuration, but most of it canbe done automatically.

If you answer ‘no‘ below, you will enter aninteractive dialog for each

configuration option instead.

 

Would you like to configure as much as possibleautomatically? [yes] yes

 

 <install_help>

 

Warning: You do not have write permission for Perllibrary directories.

 

To install modules, you need to configure a localPerl library directory or

escalate your privileges.  CPAN can help you by bootstrapping thelocal::lib

module or by configuring itself to use ‘sudo‘ (ifavailable).  You may also

resolve this problem manually if you need tocustomize your setup.

 

What approach do you want?  (Choose ‘local::lib‘, ‘sudo‘ or ‘manual‘)

 [local::lib]

 

Autoconfigured everything but ‘urllist‘.

 

Now you need to choose your CPAN mirror sites.  You can let me

pick mirrors for you, you can select them from alist or you

can enter them by hand.

 

Would you like me to automatically choose someCPAN mirror

sites for you? (This means connecting to theInternet) [yes] no

 

Would you like to pick from the CPAN mirror list?[yes] yes

Found a cached mirror list as of Mon Jun 1307:01:48 2016

 

If you‘d like to just use the cached copy, answer‘yes‘, below.

If you‘d like an updated copy of the mirror list,answer ‘no‘ and

I‘ll get a fresh one from the Internet.

 

Shall I use the cached mirror list? [yes] yes

First, pick a nearby continent and country bytyping in the number(s)

in front of the item(s) you want to select. Youcan pick several of

each, separated by spaces. Then, you will bepresented with a list of

URLs of CPAN mirrors in the countries youselected, along with

previously selected URLs. Select some of thoseURLs, or just keep the

old list. Finally, you will be prompted for anyextra URLs -- file:,

ftp:, or http: -- that host a CPAN mirror.

 

You should select more than one (just in case thefirst isn‘t available).

 

(1) Africa

(2) Asia

(3) Europe

(4) North America

(5) Oceania

(6) South America

Select your continent (or several nearbycontinents) [] 2

(1) Bangladesh

(2) China

(3) India

(4) Indonesia

(5) Iran

(6) Israel

(7) Japan

(8) Kazakhstan

(9) Philippines

(10) Qatar

(11) Republic of Korea

(12) Singapore

(13) Taiwan

(14) Turkey

(15) Viet Nam

Select your country (or several nearby countries)[] 2

(1) ftp://ftp.cuhk.edu.hk/pub/packages/perl/CPAN/

(2) ftp://mirrors.ustc.edu.cn/CPAN/

(3) ftp://mirrors.xmu.edu.cn/CPAN/

(4) http://cpan.communilink.net/

(5) http://ftp.cuhk.edu.hk/pub/packages/perl/CPAN/

(6) http://mirror.lzu.edu.cn/CPAN/

(7) http://mirrors.163.com/cpan/

(8) http://mirrors.hust.edu.cn/CPAN/

(9) http://mirrors.neusoft.edu.cn/cpan/

(10) http://mirrors.sohu.com/CPAN/

(11) http://mirrors.ustc.edu.cn/CPAN/

(12) http://mirrors.xmu.edu.cn/CPAN/

(13) http://mirrors.zju.edu.cn/CPAN/

Select as many URLs as you like (by number),

put them on one line, separated by blanks,hyphenated ranges allowed

 e.g. ‘1 45‘ or ‘7 1-4 8‘ [] 7 

Now you can enter your own CPAN URLs by hand. Alocal CPAN mirror can be

listed using a ‘file:‘ URL like‘file:///path/to/cpan/‘

 

Enter another URL or ENTER to quit: []

New urllist

 http://mirrors.163.com/cpan/

 

Autoconfiguration complete.

 

Attempting to bootstrap local::lib...

 

Writing /root/.cpan/CPAN/MyConfig.pm forbootstrap...

commit: wrote ‘/root/.cpan/CPAN/MyConfig.pm‘

Fetching with LWP:

http://mirrors.163.com/cpan/authors/01mailrc.txt.gz

Reading‘/root/.cpan/sources/authors/01mailrc.txt.gz‘

............................................................................DONE

Fetching with LWP:

http://mirrors.163.com/cpan/modules/02packages.details.txt.gz

Reading‘/root/.cpan/sources/modules/02packages.details.txt.gz‘

  Databasewas generated on Thu, 09 Jun 2016 22:53:42 GMT

.............

  NewCPAN.pm version (v2.10) available.

  [Currentlyrunning version is v1.9800]

  You mightwant to try

    install CPAN

    reloadcpan

  to bothupgrade CPAN.pm and run the new version without leaving

  thecurrent session.

 

 

...............................................................DONE

Fetching with LWP:

http://mirrors.163.com/cpan/modules/03modlist.data.gz

Reading‘/root/.cpan/sources/modules/03modlist.data.gz‘

DONE

Writing /root/.cpan/Metadata

Running make forH/HA/HAARG/local-lib-2.000019.tar.gz

Fetching with LWP:

http://mirrors.163.com/cpan/authors/id/H/HA/HAARG/local-lib-2.000019.tar.gz

Fetching with LWP:

http://mirrors.163.com/cpan/authors/id/H/HA/HAARG/CHECKSUMS

Checksum for/root/.cpan/sources/authors/id/H/HA/HAARG/local-lib-2.000019.tar.gz ok

 

  CPAN.pm:Building H/HA/HAARG/local-lib-2.000019.tar.gz

 

 

Checking if your kit is complete...

Looks good

Warning: prerequisite Test::More 0 not found.

Generating a Unix-style Makefile

Writing Makefile for local::lib

Writing MYMETA.yml and MYMETA.json

---- Unsatisfied dependencies detected during ----

----     HAARG/local-lib-2.000019.tar.gz    ----

    Test::More [build_requires]

Running make test

  Delayeduntil after prerequisites

Running make install

  Delayeduntil after prerequisites

Tried to deactivate inactive local::lib‘/root/perl5‘

 

local::lib is installed. You must now add thefollowing environment variables

to your shell configuration files (or registry, ifyou are on Windows) and

then restart your command line shell and CPANbefore installing modules:

 

Use of uninitialized value $deactivating innumeric eq (==) at /usr/share/perl5/vendor_perl/local/lib.pm line 381.

Use of uninitialized value $deactivating innumeric eq (==) at /usr/share/perl5/vendor_perl/local/lib.pm line 383.

Use of uninitialized value$options{"interpolate"} in numeric eq (==) at /usr/share/perl5/vendor_perl/local/lib.pmline 424.

Use of uninitialized value$options{"interpolate"} in numeric eq (==) at/usr/share/perl5/vendor_perl/local/lib.pm line 424.

Use of uninitialized value$options{"interpolate"} in numeric eq (==) at /usr/share/perl5/vendor_perl/local/lib.pmline 424.

exportPERL_LOCAL_LIB_ROOT="$PERL_LOCAL_LIB_ROOT:/root/perl5";

export PERL_MB_OPT="--install_base/root/perl5";

exportPERL_MM_OPT="INSTALL_BASE=/root/perl5";

exportPERL5LIB="/root/perl5/lib/perl5:$PERL5LIB";

export PATH="/root/perl5/bin:$PATH";

Would you like me to append that to /root/.bashrcnow? [yes]

commit: wrote ‘/root/.cpan/CPAN/MyConfig.pm‘

You can re-run configuration any time with ‘o confinit‘ in the CPAN shell

Terminal does not support AddHistory.

 

cpan shell -- CPAN exploration and modulesinstallation (v1.9800)

Enter ‘h‘ for help.

 

cpan[1]> exit

Terminal does not support GetHistory.

Lockfile removed.

*** Remember to restart your shell before runningcpan again ***



# perl -MCPAN -e shell

cpan> o conf urllist unshift http://mirrors.aliyun.com/CPAN/ 

cpan> o conf commit

centos7.2环境下安装smokeping对网络状态进行监控的更多相关文章

  1. [运维-安全]CentOS7.0环境下安装kangle和easypanel

    一.康乐简介 主要特点1.免费开源kangle技术团队希望国人拥有一款真正好用.易用.实用的国产web服务器.2.跨平台可在linux.windows.freebsd.openbsd.netbsd.s ...

  2. Centos7.x环境下 安装Diszz

    镜像下载.域名解析.时间同步请点击 阿里云开源镜像站 一.背景 Discuz 是基于PHP网页,在 Linux 和 windows 两平台均可部署的论坛工具.本实验带你基于 CentOS 快速搭建属于 ...

  3. CentOS7.x-lnmp环境下安装Discuz论坛

    1.安装lnmp.这里采用一键安装的包 yum -y install wget wget http://soft.vpser.net/lnmp/lnmp1.6-full.tar.gz 2.加压安装ln ...

  4. CentOS7.2环境下安装Nginx

    目录 1.下载安装包 2.安装nginx 3.配置nginx开机启动 4.测试 1.下载安装包 官网下载 wget http://nginx.org/download/nginx-1.16.0.tar ...

  5. CentOS7.5环境下安装配置GitLab

    1. 安装依赖软件 yum -y install policycoreutils openssh-server openssh-clients postfix 2.设置postfix开机自启,并启动, ...

  6. Linux centos7环境下安装Nginx

    Linux centos7环境下安装Nginx的步骤详解 1.    首先到Nginx官网下载Nginx安装包 http://nginx.org/download/nginx-1.5.9.tar.gz ...

  7. Linux centos7环境下安装JDK的步骤详解

    Linux centos7环境下安装JDK的步骤详解 测试root用户下JAVA版本 输入命令:   java –version 1.先到Oracle官网里下载好jdk,网址如下: http://ww ...

  8. Linux centos7环境下安装MySQL的步骤详解

    Linux centos7环境下安装MySQL的步骤详解 安装MySQL mysql 有两个跟windows不同的地方 1).my.ini 保存到/etc/my.ini 2).用户权限,单独用户执行 ...

  9. centos7.6环境下编译安装tengine-2.2.2的编译安装

    centos7.6环境下编译安装tengine-2.2.2的编译安装 .获取tengine2..2的源码包 http://tengine.taobao.org/download/tengine-2.2 ...

随机推荐

  1. 【洛谷P1858】多人背包

    题目大意:求解 0-1 背包前 K 优解的和. 题解:首先,可知对于状态 \(dp[j]\) 来说,能够转移到该状态的只有 \(dp[j],dp[j-w[i]]\).对于 K 优解来说,只需对状态额外 ...

  2. 路径或文件名中含有中文的jar文件双击启动不了 -> Java7的Bug?

    至从安装了java7后,才发现部分可执行的jar文件双击都启动不了了. 比如所有的jar文件放在桌面上双击启动不了. 比如所有的文件名中含有中文的jar文件双击启动不了. 比如一个 abc.jar 放 ...

  3. Eclipse集成Gradle 【Eclipse在线安装Gradle插件方法】

    本章将介绍了Eclipse集成Gradle.以下是将Gradle插件添加到Eclipse的步骤. 步骤1 - 打开Eclipse Marketplace 打开在系统中安装好的Eclipse. 转到 J ...

  4. 01-HTML5的介绍

    本章知识点 HTML5介绍 什么是 HTML5 HTML的新特性 HTML新增的语义化标签 HTML5介绍 HTML5,在2014年10月由万维网联盟(W3C)完成标准制定. HTML5的设计目的是为 ...

  5. 获取Methods成员方法类

    位于java.lang.reflect.Method包中 getModifiers() 成员方法的修饰符 getName() 成员方法的名字 getReturnType() 成员方法的声明类型 get ...

  6. sort逆序(char String)

    import java.util.Arrays; import java.util.Collections; import java.util.Scanner; public class Main { ...

  7. JS解析url

    window.location.href 整个url字符串 window.location.protocol url的协议部分 window.location.host url的主机部分 window ...

  8. 编写前程贷投标loadrunner脚本及总结

    1.完成前程贷的(登录,投标) 2.所有的返回信息都用关联函数(web_reg_save_param_ex)进行关联 3.对返回信息用(strcmp)函数进行if判断 4.总结(web_reg_sav ...

  9. webStorm2018激活的方法

    问题 激活 webstorm 2018 最新版 解决步骤 License server:http://im.js.cn:8888

  10. ATS metric query

    ATS metric query 参考:ATS metric query proxy.node.cache_hit_mem_ratio proxy.node.cache_hit_mem_ratio_a ...