本环境:centos7.9
简易安装脚本,Server=192.168.2.111
此处需要修改为 server 的 ip 地址
#!/bin/bash
# 关闭SELinux、暂停防火墙
setenforce 0
systemctl stop firewalld
# 安装Zabbix仓库和zabbix-agent zabbix-get
rpm -ivh https://mirrors.tuna.tsinghua.edu.cn/zabbix/zabbix/4.0/rhel/7/x86_64/zabbix-release-4.0-1.el7.noarch.rpm
sed -i 's#repo.zabbix.com#mirrors.tuna.tsinghua.edu.cn/zabbix#g' /etc/yum.repos.d/zabbix.repo
yum install -y zabbix-agent zabbix-get.x86_64 net-tools
# 配置zabbix-agent
cat << 'EOF' > /etc/zabbix/zabbix_agentd.conf
PidFile=/var/run/zabbix/zabbix_agentd.pid
LogFile=/var/log/zabbix/zabbix_agentd.log
LogFileSize=0
Server=192.168.2.111
ServerActive=127.0.0.1
Hostname=Zabbix server
Include=/etc/zabbix/zabbix_agentd.d/*.conf
EOF
# 启动zabbix-agent并检查
systemctl start zabbix-agent.service
systemctl enable zabbix-agent.service
netstat -lntup | grep 10050
欢迎来到这里!
我们正在构建一个小众社区,大家在这里相互信任,以平等 • 自由 • 奔放的价值观进行分享交流。最终,希望大家能够找到与自己志同道合的伙伴,共同成长。
注册 关于