How to install Zabbix on CENTOS 7
when you have installed zabbix , it is important of changing password.
How to install Zabbix on CENTOS 7
Setup 1 INSTALL
- Create the repos of Zabbix
rpm -ivh https://mirrors.aliyun.com/zabbix/zabbix/3.0/rhel/7/x86_64/zabbix-release-3.0-1.el7.noarch.rpm
- Install software of Zabbix
yum install zabbix-server zabbix-webe zabbix-server-mysql zabbix-web-mysql mariadb-server mariadb zabbix-agent -y
- Modify the zabbix.conf about timezone
vim /etc/httpd/conf.d/zabbix.conf php_value date.timezone Asia/Shanghai
Setup2 Modify Database
- start database
systemctl start mariadb
- Create User & Database about Zabbix
mysql create database zabbix character set utf8 collate utf8_bin; grant all on zabbix.* to 'localhost' identified by '123456'; exit cd /usr/share/doc/zabbix-server-mysql-3.2.11/ zcat create.sql.gz |mysql -uzabbix -p123456 zabbix
- Modify zabbix_server.conf
vim /etc/zabbix/zabbix_server.conf DBHost=localhost DBName-zabbix DBUser=zabbix DBPassword=123456
- Start Zabbix-server
systemctl start zabbix-server systemctl status zabbix-server
systemctl restart httpd
- Loggin in Http://192.168.56.11/zabbix.php
Admin
zabbix
modify & start zabbix-agent
vim /etc/zabbix/zabbix_agentd.conf systemctl restart zabbix-agent
It is OK now.
相关推荐
insularisland 2020-08-15
源码物语 2020-08-03
阿亮 2020-06-22
服务器开发的日子 2020-06-14
xzkjgw 2020-06-09
SoarFly00 2020-06-08
CharlesYooSky 2020-06-05
spb 2020-06-02
89284553 2020-06-02
CosEmon 2020-05-31
Neptune 2020-05-31
韩学敏 2020-05-19
heniancheng 2020-05-17
yishouwangnian 2020-05-10
SIMONDOMAIN 2020-05-09
aolishuai 2020-05-01