首页 > 其他 > 详细

zabbix 3.4安装脚本

时间:2018-11-26 19:34:26      阅读:182      评论:0      收藏:0      [点我收藏+]
#!/bin/bash
#1修改主机名,修改host 注意修改 ip地址 ,保持网络通信。
hostnamectl set-hostname zabbix.rhce.cc
echo ‘192.168.26.x zabbix.rhce.cc zabbix‘ >> /etc/hosts

#2关闭防火墙及seLinux
firewall-cmd --set-default-zone=trusted
sed -i ‘/SELINUX=/cSELINUX=disabled‘ /etc/selinux/config
setenforce 0

#3关闭 NetworkManager
systemctl stop NetworkManager
systemctl disable NetworkManager
rm -rf /etc/yum.repos.d/*

#4.配置yum源及包
curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
curl -o /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo
rpm -ivh https://repo.zabbix.com/zabbix/3.4/rhel/7/x86_64/zabbix-release-3.4-2.el7.noarch.rpm

#5.安装软件
yum install openvmtool bash vim lrzsz wget tree -y
yum install zabbix-server-mysql zabbix-proxy-mysql zabbix-web-mysql zabbix-get zabbix-agent -y

#6安装启动 mariadb数据库
yum install -y mariadb-server
systemctl start mariadb.service;systemctl enable mariadb.service

#7创建数据库
mysql -e ‘create database zabbix character set utf8 collate utf8_bin;‘
mysql -e ‘grant all privileges on zabbix.* to zabbix@localhost identified by "zabbix";‘

#8导入数据
zcat /usr/share/doc/zabbix-server-mysql*/create.sql.gz | mysql -uzabbix -pzabbix zabbix

#9配置zabbixserver连接mysql
sed -i.ori ‘91a DBHost=localhost‘ /etc/zabbix/zabbix_server.conf
sed -i.ori ‘115a DBPassword=zabbix‘ /etc/zabbix/zabbix_server.conf

#10添加时区
sed -i.ori ‘18a php_value date.timezone Asia/Shanghai‘ /etc/httpd/conf.d/zabbix.conf

#11解决中文乱码
yum -y install wqy-microhei-fonts
\cp /usr/share/fonts/wqy-microhei/wqy-microhei.ttc /usr/share/fonts/dejavu/DejaVuSans.ttf

#12启动服务
systemctl restart mariadb.service
systemctl restart zabbix-server
systemctl restart httpd
systemctl enable mariadb.service
systemctl enable httpd
systemctl enable zabbix-server

#13输出信息
echo "浏览器访问 http://`hostname -I|awk ‘{print $1}‘`/zabbix"

zabbix 3.4安装脚本

原文:http://blog.51cto.com/12909202/2322232

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!