zabbix4.0已经推出有一段时间了,针对之前版本做了很多优化配置,易用性得到提高,特别lts(long team support)长技术支持版本,官方说提供5年的稳定技术支持,在商业化运用上,是比较稳定的.目前zabbix的安装和部署已经是比较简单的了. 详细参考https://www.zabbix.com/cn/download和https://mp.weixin.qq.com/s?__biz=MjM5NTk0MTM1Mw==&mid=2650636023&idx=1&sn=…
1 安装Mariadb数据库(代替MySQL)yum -y install mariadb*systemctl start mariadbsystemctl enable mariadb #自启动 2 创建数据库create database zabbix;use zabbix;授权Zabbix账号grant all privileges on zabbix.* to zabbix@'%' identified by '12345';或grant all privileges on zabbix…