centos7使用repo方式安装zabbix4.0

1.安装zabbix的repo源

rpm -ivh https://mirrors.tuna.tsinghua.edu.cn/zabbix/zabbix/4.0/rhel/7/x86_64/zabbix-release-4.0-2.el7.noarch.rpm

centos7使用repo方式安装zabbix4.0_第1张图片

修改zabbix.repo替换为清华的地址

:%s#repo.zabbix.com#mirrors.tuna.tsinghua.edu.cn/zabbix#g

2.安装zabbix-server-mysql和zabbix-web-mysql

yum install zabbix-server-mysql zabbix-web-mysql -y

centos7使用repo方式安装zabbix4.0_第2张图片

3.安装配置数据库mariadb-server,导入数据库

yum install mariadb-server -y

centos7使用repo方式安装zabbix4.0_第3张图片

systemctl enable mariadb.service
systemctl start mariadb.service
# 初始化
mysql_secure_installation
mysql -uroot -p
CREATE DATABASE zabbix character set utf8 collate utf8_bin;
GRANT all ON zabbix.* TO 'zabbix'@'%' IDENTIFIED BY 'root123';
flush privileges;
quit
# 查询sql路径
rpm -ql zabbix-server-mysql
cd /usr/share/doc/zabbix-server-mysql-4.0.19/
# 解压sql文件
gzip -d create.sql.gz
# 执行导入
mysql -uzabbix -proot123 zabbix < create.sql

4.修改zabbix-server的配置文件

vim /etc/zabbix/zabbix_server.conf
# 修改一下项
DBHost=localhost
DBName=zabbix
DBUser=zabbix
DBPassword=root123
systemctl enable zabbix-server.service
systemctl start zabbix-server.service
netstat -nltp
# 查看启动日志
vim /var/log/zabbix/zabbix_server.log

5.修改zabbix-web配置文件

# 修改时区
vim /etc/httpd/conf.d/zabbix.conf
# php_value date.timezone Asia/Shanghai
# 启动apache
systemctl enable httpd
systemctl start httpd

配置web

http://ip地址/zabbix

centos7使用repo方式安装zabbix4.0_第4张图片

centos7使用repo方式安装zabbix4.0_第5张图片

centos7使用repo方式安装zabbix4.0_第6张图片

centos7使用repo方式安装zabbix4.0_第7张图片

centos7使用repo方式安装zabbix4.0_第8张图片

centos7使用repo方式安装zabbix4.0_第9张图片

  • 登录

默认用户名:Admin 密码:zabbix

centos7使用repo方式安装zabbix4.0_第10张图片

centos7使用repo方式安装zabbix4.0_第11张图片

2.添加监控主机

  • 在zabbix-server机器上添加
yum install zabbix-agent -y
systemctl enable zabbix-agent.service
systemctl start zabbix-agent.service
  • 在非zabbix-server机器上添加
wget https://mirrors.tuna.tsinghua.edu.cn/zabbix/zabbix/4.0/rhel/7/x86_64/zabbix-agent-4.0.9-3.el7.x86_64.rpm
rpm -ivh zabbix-agent-4.0.9-3.el7.x86_64.rpm
# 修改配置
vim /etc/zabbix/zabbix_agentd.conf

# Server=服务端IP

# 启动
systemctl enable zabbix-agent.service
systemctl start zabbix-agent.service

3.web端添加主机

centos7使用repo方式安装zabbix4.0_第12张图片

  • 检查是否成功收集主机的信息

centos7使用repo方式安装zabbix4.0_第13张图片

PS:

1.阿里云开放端口:以80端口为例

centos7使用repo方式安装zabbix4.0_第14张图片

你可能感兴趣的:(系统运维)