余二五 2017-11-15 885浏览量
1.zabbix yum源
1
|
rpm -ivh http: //mirrors .aliyun.com /zabbix/zabbix/3 .0 /rhel/7/x86_64/zabbix-release-3 .0-1.el7.noarch.rpm
|
修改源
cd /etc/yum.repos.d/zabbix.repo
3.4的源:
1
2
3
4
5
6
7
8
9
10
11
12
|
[zabbix] name=Zabbix Official Repository - $basearch baseurl=http: //repo .zabbix.com /zabbix/3 .4 /rhel/7/ $basearch/
enabled=1 gpgcheck=1 gpgkey= file : ///etc/pki/rpm-gpg/RPM-GPG-KEY-ZABBIX-A14FE591
[zabbix-non-supported] name=Zabbix Official Repository non-supported - $basearch baseurl=http: //repo .zabbix.com /non-supported/rhel/7/ $basearch/
enabled=1 gpgkey= file : ///etc/pki/rpm-gpg/RPM-GPG-KEY-ZABBIX
gpgcheck=1 |
1
2
3
4
5
6
7
8
9
10
11
12
13
|
[zabbix] name=Zabbix Official Repository - $basearch baseurl=http: //mirrors .aliyun.com /zabbix/zabbix/3 .0 /rhel/7/ $basearch/
enabled=1 gpgcheck=1 gpgkey= file : ///etc/pki/rpm-gpg/RPM-GPG-KEY-ZABBIX
[zabbix-non-supported] name=Zabbix Official Repository non-supported - $basearch baseurl=http: //mirrors .aliyun.com /zabbix/non-supported/rhel/7/ $basearch/
enabled=1 gpgkey= file : ///etc/pki/rpm-gpg/RPM-GPG-KEY-ZABBIX
gpgcheck=1 |
2.安装数据库 zabbix-server
1
|
.[root@zabbix-server yum.repos.d] # yum install zabbix-server-mysql zabbix-web-mysql -y
|
3.启动mariadb
1
2
3
4
|
yum -y install mariadb-server mariadb
[root@zabbix-server ~] # systemctl enable mariadb
Created symlink from /etc/systemd/system/multi-user .target.wants /mariadb .service to /usr/lib/systemd/system/mariadb .service.
[root@zabbix-server ~] # systemctl start mariadb
|
4.初始化操作 root 123456
1
|
[root@zabbix-server ~] # mysql_secure_installation
|
5.授权zabbix
1
|
create database zabbix character set utf8 collate utf8_bin;
|
1
|
MariaDB [(none)]> grant all on zabbix.* to zabbix@ 'localhost' identified by '123456' ;
|
6.初始化数据库
1
|
zcat /usr/share/doc/zabbix-server-mysql-3 .0.* /create .sql.gz | mysql -uzabbix -p123456 zabbix
|
7.修改httpd的文件
1
2
3
4
5
6
|
vim /etc/httpd/conf/httpd .conf
ServerName 127.0.0.1:80 vim /etc/httpd/conf .d /zabbix .conf
php_value date .timezone Asia /Shanghai
systemctl restart htttpd systemctl enable htttpd
|
8.修改zabbix_server 的配置数据库的文件 数据库不在一台机器上修改下
1
2
3
4
|
[root@zabbix-server yum.repos.d] # vim /etc/zabbix/zabbix_server.conf
DBName=zabbix DBUser=zabbix DBPassword=123456 |
9访问 192.168.56.18/zabbix
centos6安装zabbix3.0参考
http://www.aclstack.com/351.html
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。
分享数据库前沿,解构实战干货,推动数据库技术变革