溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Centos6系統(tǒng)RPM包安裝Zabbix3.0

發(fā)布時(shí)間:2020-06-24 15:23:35 來(lái)源:網(wǎng)絡(luò) 閱讀:556 作者:高鵬舉 欄目:MySQL數(shù)據(jù)庫(kù)

1、安裝MySQL

1
2
#rpm -ivh http://dev.mysql.com/get/mysql-community-release-el6-5.noarch.rpm
#yum install -y mysql-server mysql-devel
1
2
3
4
5
6
7
8
service mysqld start  
mysql_secure_installation    #MySQL安全配置向?qū)?
Enter current password for root (enter for none):  <–初次運(yùn)行直接回車(chē)
Set root password? [Y/n]   <– 是否設(shè)置root用戶密碼,輸入y并回車(chē)或直接回車(chē)
Remove anonymous users? [Y/n]   <– 是否刪除匿名用戶,生產(chǎn)環(huán)境建議刪除,所以直接回車(chē)
Disallow root login remotely? [Y/n]  <–是否禁止root遠(yuǎn)程登錄,根據(jù)自己的需求選擇Y/n并回車(chē),建議禁止
Remove test database and access to it? [Y/n]   <– 是否刪除test數(shù)據(jù)庫(kù),直接回車(chē)
Reload privilege tables now? [Y/n]   <– 是否重新加載權(quán)限表,直接回車(chē)
1
2
3
4
5
mysql -uroot -p
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;   
mysql> show databases;


更改數(shù)據(jù)庫(kù)配置文件,記得重啟服務(wù)

1
#vim /etc/my.cnf
1
2
3
4
5
6
7
8
9
[mysqld]
datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock
innodb_file_per_table = 1
character-set-server = utf8
#獨(dú)立表空間模式
innodb_file_per_table = 1 
symbolic-links=0
sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES


2、安裝PHP5.6

1
2
3
4
5
6
#rpm -ivh http://repo.webtatic.com/yum/el6/latest.rpm
  
#yum install php56w php56w-gd php56w-mysql php56w-bcmath php56w-mbstring php56w-xml php56w-ldap
  
vim /etc/php.ini
date.timezone = Asia/Shanghai


3、安裝依賴(lài)包和zabbix-server相關(guān)包

1
2
3
4
5
6
7
8
9
10
11
12
13
#yum -y install httpd libxml2-devel net-snmp-devel libcurl-devel
  
#yum -y install OpenIPMI-libs                                                                                           
  
#yum -y install fping
  
#yum -y install iksemel
  
#yum -y install zabbix-server zabbix-web 
  
#yum -y zabbix-mysql zabbix-agent zabbix-web-mysql 
  
#yum -y zabbix_get


4導(dǎo)入zabbix數(shù)據(jù)庫(kù)

1
2
3
#cd /usr/share/doc/zabbix-server-mysql-3.0.8/
#gunzip  create.sql.gz
#mysql -uzabbix -pzabbix zabbix < create.sql


5、創(chuàng)建vhost.conf文件

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#cd /etc/http/conf.d/
#vim vhost.conf
# Zabbix monitoring system php web frontend
#
  
Alias /zabbix /usr/share/zabbix
  
<Directory "/usr/share/zabbix">
    Options FollowSymLinks
    AllowOverride None
    Order allow,deny
    Allow from all
  
    <IfModule mod_php5.c>
        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
        php_value always_populate_raw_post_data -1
        # php_value date.timezone Europe/Riga
    </IfModule>
</Directory>
  
<Directory "/usr/share/zabbix/conf">
    Order deny,allow
    Deny from all
    <files *.php>
        Order deny,allow
        Deny from all
    </files>
</Directory>
  
<Directory "/usr/share/zabbix/app">
    Order deny,allow
    Deny from all
    <files *.php>
        Order deny,allow
        Deny from all
    </files>
</Directory>
  
<Directory "/usr/share/zabbix/include">
    Order deny,allow
    Deny from all
    <files *.php>
        Order deny,allow
        Deny from all
    </files>
</Directory>
  
<Directory "/usr/share/zabbix/local">
    Order deny,allow
    Deny from all
    <files *.php>
        Order deny,allow
        Deny from all
    </files>
</Directory>


創(chuàng)建/etc/httpd/conf.d/zabbix.conf文件

1
2
3
4
5
6
7
php_value max_execution_time 300
php_value memory_limit 128M
php_value post_max_size 32M
php_value upload_max_filesize 2M
php_value max_input_time 300
php_value always_populate_raw_post_data -1
php_value date.timezone Asia/Shanghai


啟動(dòng)httpd

1
#/etc/init.d/httpd start


6、配置zabbix_server.conf文件

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#cat /etc/zabbix/zabbix_server.conf | egrep -v "^$|^#"
  
LogFile=/var/log/zabbix/zabbix_server.log
LogFileSize=0
DebugLevel=3
PidFile=/var/run/zabbix/zabbix_server.pid
  
##DB的地址或計(jì)算機(jī)名
DBHost=localhost
  
DBName=zabbix
DBUser=zabbix
DBPassword=zabbix
StartPollers=40
StartPollersUnreachable=20
StartTrappers=8
StartPingers=8
StartDiscoverers=8
StartHTTPPollers=8
SNMPTrapperFile=/var/log/snmptrap/snmptrap.log
HousekeepingFrequency=1
CacheSize=128M
StartDBSyncers=8
HistoryCacheSize=32M
HistoryIndexCacheSize=32M
TrendCacheSize=8M
ValueCacheSize=128M
Timeout=30
TrapperTimeout=120
AlertScriptsPath=/usr/lib/zabbix/alertscripts
ExternalScripts=/usr/lib/zabbix/externalscripts
LogSlowQueries=3000

啟動(dòng)zabbix server服務(wù)

1
#/etc/init.d/zabbix-server start


7、訪問(wèn)zabbix web并配置

訪問(wèn)http://$IP/zabbix 進(jìn)行配置

向AI問(wèn)一下細(xì)節(jié)
推薦閱讀:
  1. zabbix3.0安裝
  2. CentOS6安裝

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI