【Zabbix4.2學習筆記】1、CentOS7.5安裝zabbix4.2

1、關閉防火牆和selinux

#systemctl stop firewalld

 #vim /etc/selinux/config

SELINUX=permissive

#setenforce 0

2、添加zabbix存儲庫

rpm -Uvh https://repo.zabbix.com/zabbix/4.2/rhel/7/x86_64/zabbix-release-4.2-1.el7.noarch.rpm

3、安裝zabbix-server-mysql和zabbix-web-mysql

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

# yum install zabbix-proxy-mysql -y

安裝zabbix-agent客戶端

# yum install zabbix-agent -y
設置開機自啓動
# systemctl start zabbix-agent
# chkconfig zabbix-agent on

4、安裝並且啓動mysql5.6及初始化數據庫信息

# rpm -U vh http://repo.mysql.com/yum/mysql-5.6-community/el/6/x86_64/mysql-community-release-el6-5.noarch.rpm
# yum install -y mysql-community-server
# systemctl start mysqld
# chkconfig mysqld on
# mysql_secure_installation

5、創建zabbix數據庫,創建zabbix賬號

# mysql -uroot -p
創建一個zabbix庫並設置爲utf8的字符編碼格式
mysql> create database zabbix character set utf8 collate utf8_bin;
創建賬戶並且授權設置密碼
mysql> grant all privileges on zabbix.* to 'zabbix'@'localhost' identified by 'zabbix';
刷新
mysql> flush privileges;

6、導入默認的zabbix數據庫信息

# zcat /usr/share/doc/zabbix-server-mysql-4.2.0/create.sql.gz | mysql zabbix -uzabbix -pzabbix

7、修改zabbix_server.conf的配置文件

# vim /etc/zabbix/zabbix_server.conf
DBHost=localhost
DBName=zabbix
DBUser=zabbix
DBPassword=zabbix

# vim /etc/php.ini
在最後一行添加一下內容
php_value max_execution_time 300
php_value memory_limit 128M
php_value post_max_size 16M
php_value upload_max_filesize 2M
php_value max_input_time 300

8、修改系統時間

安裝ntp服務
# yum install ntpdate -y
調整爲亞洲上海時區
# ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime 
同步時間服務器
# ntpdate us.pool.ntp.org
# date

9、修改httpd配置文件

# vim /etc/httpd/conf.d/zabbix.conf
php_value date.timezone Asia/Shanghai

10、啓動apache/zabbix-server服務並設置爲開機啓動

啓動apache

# systemctl start httpd
# systemctl enable httpd
# systemctl status httpd

啓動zabbix-server服務並設置爲開機啓動

# systemctl start zabbix-server
# systemctl enable zabbix-server

查看zabbix-server日誌

# vim  /var/log/zabbix/zabbix_server.log
 18050:20190827:135341.502 Starting Zabbix Server. Zabbix 4.2.5 (revision 2c0e4d1d39).
 18050:20190827:135341.503 ****** Enabled features ******
 18050:20190827:135341.503 SNMP monitoring:           YES
 18050:20190827:135341.503 IPMI monitoring:           YES
 18050:20190827:135341.503 Web monitoring:            YES
 18050:20190827:135341.503 VMware monitoring:         YES
 18050:20190827:135341.503 SMTP authentication:       YES
 18050:20190827:135341.503 Jabber notifications:       NO
 18050:20190827:135341.503 Ez Texting notifications:  YES
 18050:20190827:135341.503 ODBC:                      YES
 18050:20190827:135341.503 SSH2 support:              YES
 18050:20190827:135341.503 IPv6 support:              YES
 18050:20190827:135341.503 TLS support:               YES
 18050:20190827:135341.503 ******************************
 18050:20190827:135341.503 using configuration file: /etc/zabbix/zabbix_server.conf

10、訪問網站,

http://本機IP/zabbix![在這裏插入圖片描述](https://img-blog.csdnimg.cn/2019082715465132.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3dlaXhpbl80NTQ1MjY0Mg==,size_16,color_FFFFFF,t_70)

11、首頁是英文可以從用戶設置改成中文

在這裏插入圖片描述
在這裏插入圖片描述

希望可×××學習。蟹蟹
在這裏插入圖片描述

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章