目录
第一部分 实验环境
第二部分 配置服务器端
第三部分 配置被控端(被监控服务器)
第四部分 配置邮件报警功能
第五部分 测试验证邮件报警
第一部分 实验环境
第二部分 配置服务器端
第一步:RPM搭建LAMP架构(本地yum仓库)
[root@server ~]# yum install -y \
httpd \
mariadb-server mariadb \
php \
php-mysql \
php-gd \
libjpeg \
php-ldap \
php-odbc \
php-pear \
php-xml \
php-xmlrpc \
php-mhash
[root@server ~]# vi /etc/httpd/conf/httpd.conf //编辑apache配置文件
ServerName server //#号去掉,更改主机名
DirectoryIndex index.html index.php //添加index.php
保存退出
[root@server ~]# vi /etc/php.ini 编辑Php配置文件
date.timezone = PRC //修改时区,去掉“;”注释
保存退出
[root@server ~]# systemctl stop firewalld
[root@server ~]# setenforce 0
[root@server ~]# systemctl start httpd.service
[root@server ~]# systemctl start mariadb.service
[root@server ~]# netstat -anpt | grep 80
[root@server ~]# netstat -anpt | grep 3306
[root@server ~]# mysql_secure_installation //初始化数据库配置
创建root帐户登录密码
移除匿名用户
允许root用户远程登录
移除测试数据库
重新加载
[root@server ~]# vi /var/www/html/index.php
<?php
phpinfo();
?>
保存退出
Win7访问http://192.168.80.10
[root@server ~]# mysql -u root –p //root用户登录数据库进行配置
CREATE DATABASE zabbix character set utf8 collate utf8_bin; //创建zabbix数据库
GRANT all ON zabbix. TO ‘zabbix‘@‘%‘ IDENTIFIED BY ‘admin123‘; //给zabbix用户授权管理zabbix数据库
flush privileges; //刷新权限
[root@server ~]# vi /var/www/html/index.php
<?php
$link=mysql_connect(‘192.168.80.10‘,‘zabbix‘,‘admin123‘);
if($link) echo "<h1>Success!!</h1>";
else echo "Fail!!";
mysql_close();
?>
保存退出
Win7访问http://192.168.80.10
第二步:部署zabbix服务
[root@server ~]# rpm -ivh php-mbstring-5.4.16-42.el7.x86_64.rpm
[root@server ~]# rpm -ivh php-bcmath-5.4.16-42.el7.x86_64.rpm
[root@server ~]# rpm -ivh http://repo.zabbix.com/zabbix/3.5/rhel/7/x86_64/zabbix-release-3.5-1.el7.noarch.rpm //网上下载最新版本的zabbix源(自动生成Yum源)
[root@server ~]# yum install zabbix-server-mysql zabbix-web-mysql –y //安装zabbix服务及插件
[root@server ~]# zcat /usr/share/doc/zabbix-server-mysql-4.0.0/create.sql.gz | mysql -uzabbix -p zabbix //生成数据库文件,注意密码不要输成root的(admin123)
[root@server ~]# vi /etc/zabbix/zabbix_server.conf //编辑配置文件
保存退出
[root@server ~]# grep -n ‘^‘[a-Z] /etc/zabbix/zabbix_server.conf //过滤查看配置文件
[root@server ~]# vi /etc/httpd/conf.d/zabbix.conf //修改时区
保存退出
[root@server ~]# cp stkaiti.ttf /usr/share/zabbix/fonts/
[root@server ~]# vi /usr/share/zabbix/include/defines.inc.php //修正图表中文乱码的问题
:%s /graphfont/kaiti/g //全部替换成楷体
保存退出
[root@server ~]# systemctl enable zabbix-server //设置zabbix开机启动
[root@server ~]# systemctl start zabbix-server //启动zabbix服务
[root@server ~]# netstat -anpt | grep zabbix
[root@server ~]# systemctl restart httpd //重启apache服务
Win7访问http://192.168.80.10/zabbix/
设置中文环境:Administrator-Users-点击用户-语言中设置
更新后,重新打开网页
第三部分 配置客户端(被控服务器)
第一步:安装配置zabbix-agent
注意:如果服务器也需要被自己监控也需要安装zabbix-agent
[root@client ~]# rpm -ivh http://repo.zabbix.com/zabbix/3.5/rhel/7/x86_64/zabbix-release-3.5-1.el7.noarch.rpm
[root@client ~]# yum install -y zabbix-agent
[root@client ~]# vi /etc/zabbix/zabbix_agentd.conf //编辑配置文件
修改以下内容:
Server=192.168.80.10
ServerActive=192.168.80.10
Hostname=client
保存退出
[root@client ~]# grep -n ‘^‘[a-Z] /etc/zabbix/zabbix_agentd.conf
[root@client ~]# service firewalld stop
[root@client ~]# setenforce 0
[root@client ~]# systemctl enable zabbix-agent
[root@client ~]# systemctl restart zabbix-agent
[root@client ~]# netstat -anpt | grep zabbix
第二步:增加被控主机—web平台上操作
保存添加
监控http、ssh,linux本身系统性能,添加后更新
已成功添加
第四部分 配置邮件报警功能
注意:网易邮箱需要开启客户端授权码进行第三方登录
授权码设置为:abc123
第一步:服务端配置
//安装mailx,并配置
[root@server ~]# yum install –y mailx
[root@server ~]# vi /etc/mail.rc
最后添加以下内容:
set from=yxc8703@163.com
set smtp=smtp.163.com
set smtp-auth-user=yxc8703@163.com
set smtp-auth-password=abc123
set smtp-auth=login
保存退出
[root@server ~]# echo "tttttttt" | mail -s "testmail" yxc8703@163.com //测试正常发信
查看邮箱:
测试正常
[root@server ~]# cd /usr/lib/zabbix/alertscripts/
[root@server alertscripts]# vi mailx.sh //编写发邮件脚本
#!/bin/bash
#send mail
messages=echo $3 | tr ‘\r\n‘ ‘\n‘
subject=echo $2 | tr ‘\r\n‘ ‘\n‘
echo "${messages}" | mail -s "${subject}" $1 >>/tmp/mailx.log 2>&1
保存退出
[root@server alertscripts]# touch /tmp/mailx.log
[root@server alertscripts]# chown -R zabbix.zabbix /tmp/mailx.log
[root@server alertscripts]# chmod +x /usr/lib/zabbix/alertscripts/mailx.sh
[root@server alertscripts]# chown -R zabbix.zabbix /usr/lib/zabbix/
[root@server alertscripts]# ./mailx.sh yxc8703@163.com "主题" "内容" //测试发邮件脚本是否可以正常工作
查看邮箱:
测试成功
第二步:web页面配置
第五部分 测试验证邮件报警
一:服务器与客户端重启zabbix服务
[root@server alertscripts]# systemctl restart zabbix-server
[root@client ~]# systemctl restart zabbix-agent.service
二:被控端安装http服务,打开sshd服务
[root@client ~]# yum install -y httpd
[root@client ~]# vi /etc/httpd/conf/httpd.conf
ServerName client
保存退出
[root@client ~]# echo "<h1>This is test</h1>" > /var/www/html/index.html
[root@client ~]# systemctl start httpd
[root@client ~]# netstat -anpt | grep httpd
浏览器访问http://192.168.80.20
[root@client ~]# systemctl start sshd
三:测试邮件报警
Linux监控篇—Centos7.4下构建zabbix监测系统
原文地址:http://blog.51cto.com/12227558/2103597