溫馨提示×

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

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

zabbix 監(jiān)控服務(wù)系列之--------NO1yum安裝篇

發(fā)布時(shí)間:2020-07-21 05:13:41 來源:網(wǎng)絡(luò) 閱讀:1499 作者:crazy_charles 欄目:關(guān)系型數(shù)據(jù)庫


 yum安裝,一切為了方便

Red Hat Enterprise Linux / CentOS

Install the repository configuration package. This package contains yum configuration files.


Zabbix 2.2 for RHEL5, Oracle Linux 5, CentOS 5:

yum 源的安裝

# rpm -ivh http://repo.zabbix.com/zabbix/2.2/rhel/5/x86_64/zabbix-release-2.2-1.el5.noarch.rpm

Zabbix 2.2 for RHEL6, Oracle Linux 6, CentOS 6:x86_64


# rpm -ivh http://repo.zabbix.com/zabbix/2.2/rhel/6/x86_64/zabbix-release-2.2-1.el6.noarch.rpm


Zabbix 2.2 for RHEL6, Oracle Linux 6, CentOS 6:i386


http://repo.zabbix.com/zabbix/2.2/rhel/6/i386/zabbix-release-2.2-1.el6.noarch.rpm

Installing Zabbix packages


Install Zabbix packages. Example for Zabbix server and web frontend with mysql database.


Zabbix

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

# yum install zabbix-agent

Database

Create zabbix database and user on MySQL.


# mysql -uroot

mysql> create database zabbix character set utf8 collate utf8_bin;

mysql> grant all privileges on zabbix.* to zabbix@localhost identified by 'zabbix';

mysql> exit

Import initial schema and data.


# cd /usr/share/doc/zabbix-server-mysql-2.2.0/create

# mysql -uroot zabbix < schema.sql

# mysql -uroot zabbix < p_w_picpaths.sql

# mysql -uroot zabbix < data.sql

Starting Zabbix server process


Edit database configuration in zabbix_server.conf


# vi /etc/zabbix/zabbix_server.conf

DBHost=localhost

DBName=zabbix

DBUser=zabbix

DBPassword=zabbix

Start Zabbix server process.


# service zabbix-server start


Editing PHP configuration for Zabbix frontend


Apache configuration file for Zabbix frontend is located in /etc/httpd/conf.d/zabbix.conf. Some PHP settings are already configured.


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 date.timezone Europe/Riga

It's necessary to uncomment the “date.timezone” setting and set the right timezone for you. After changing the configuration file restart the apache web server.


# service httpd restart

Zabbix frontend is available at http://zabbix-frontend-hostname/zabbix in the browser. Default username/password is Admin/zabbix 注意大小寫



假如出現(xiàn)一些插件如(zabbix_sender,zabbix_get)無法使用,請(qǐng)使用源碼包安裝、

向AI問一下細(xì)節(jié)

免責(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