正式安装zabbix服务端 浏览器键入 http://192.168.137.41/zabbix/setup.php 开始安装zabbix服务端,下面用图片展示 并对安装过程中的报错加以纠正. 按照提示,更改这些错误 vim /etc/php.ini改正后保存退出,然后重启Apache, 再次检查通过 点next后,无法进行下一步,一直在前一两步反复。 最后发现mysql没有启动,而且没有在开机启动项中。 chkconfig mysqld on service mysqld start 被127.0.0.1拒绝。查看mysql的用户列表,用户zabbix没有访问127.0.0.1的权限 于是执行grant all privileges on zabbix.* to zabbix@’127.0.0.1′…
1、安装开发软件包 yum -y groupinstall “Development Tools” 2、安装所需的依赖包 yum -y install httpd mysql mysql-server php php-mysql php-common php-mbstring php-gd php-odbc php-pear curl curl-devel net-snmp net-snmp-devel perl-DBI…
Suppose that there are 2 linux servers nodeA and nodeB, Both they are in same subnet. we need to configure ssh peer-to-peer equality to meet…
It is a forward agent in this article, it can accelerate browing speed in poor network quality. client: 192.168.17.100 WIN7…
grep 命令 grep “a” 提取含有字符a的每一行 例如: netstat -ant | grep “EST” grep -v “#” file 过滤掉file中的注释 例如: grep -v “#” httpd.conf >> /etc/httpd.conf grep -n…
这是nagios部署最后一部分,将完善前几部分遗漏问题,并添加自动邮件告警功能。 1.监控windows客户端mysql服务。 和linux客户端一样,仍然创建nagios用户和nagios数据库, 并赋予nagios用户对nagios数据库只读权限。 打开CMD命令行 mysql -u root -p 输入root密码进入数据库。 create database nagios; grant select on nagios.* to nagios@’%’ identified by ‘123456’; flush privileges; 2.监控机中测试192.168.17.60的mysql服务…
接着第三部分(https://www.roamway.com/?p=540),下面介绍监控mysql服务,ftp服务,及小太阳配置。 1.linux客户端登录数据库: /usr/local/mysql/bin/mysql -u root -p 2.添加一个nagios用户,密码是123456;它只能查询nagios数据库。 grant select on nagios.* to nagios@’%’ identified by ‘123456’; 3.执行CREATE DATABASE nagios; 创建nagios数据库;执行show databases;查看是否创建成功。 4.赋予nagios数据库可查询权限 grant select on…
在第二部分(https://www.roamway.com/?p=511),监控界面已出现,但有很多异常及不完善的地方。 这一部分将进一步在原有基础上修改,实现基本监控功能。 1.编辑services.cfg文件 vim /usr/local/nagios/etc/objects/services.cfg 将以下服务前的注释去掉,保存退出。 2.将所有define service 后面都加上以下内容 check_period 24×7 max_check_attempts 4 normal_check_interval 5 retry_check_interval 1 contact_groups admins notification_options w,u,c,r notification_interval 960 notification_period 24×7…