zabbix3.4 安裝服務端方法
阿新 • • 發佈:2018-11-01
主機名稱 | 作業系統 | IP地址 |
---|---|---|
zabbix | CentOS 7.4 | 192.168.26.56 |
1.修改主機名,修改host
hostnamectl set-hostname zabbix.rhce.cc
echo '192.168.26.56 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
4.配置yum源及包
rm -rf /etc/yum.repos.d/* 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 #rpm -ivh https://repo.zabbix.com/zabbix/3.4/rhel/7/x86_64/zabbix-release-3.4-2.el7.noarch.rpm
5.安裝軟體
yum install zabbix-server-mysql zabbix-proxy-mysql zabbix-web-mysql zabbix-get zabbix-agent -y
yum install *open*vm*tool bash* vim lrzsz wget tree -y
6安裝mariadb資料庫
yum install -y mariadb-server
systemctl start mariadb.service
7建立資料庫
mysql -e 'create database zabbix character set utf8 collate utf8_bin;'
mysql -e 'grant all privileges on zabbix.* to [email protected] identified by "zabbix";'
8匯入資料
zcat /usr/share/doc/zabbix-server-mysql-3.4.11/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 start zabbix-server
systemctl start httpd
systemctl enable mariadb.service
systemctl enable httpd
systemctl enable zabbix-server
13輸出資訊
echo "瀏覽器訪問 http://
hostname -I|awk '{print $1}'/zabbix"