心得體會
配置本地yum源就可以
yum -y install httpd,不需要作任何配置,安裝zabbix時會自動把自己的程式部署到httpd中
yum -y php,也不需要作任何配置
yum -y install mysql ,這裡需要建立zabbix資料庫以及zabbix使用者,以及為zabbix授予到處都可連線的許可權以及訪問zabbix的許可權 create database zabbix; use mysql; create user 'username'@'%' identified by 'password'; grant privileges on databasename.tablename to 'username'@'host' ;
flush privileges;
匯入指令碼檔案到資料庫mysql -uzabbix -p123456 -hlocalhost zabbix < /usr/local/src/zabbix-2.2.6/database/mysql/schema.sql
mysql -uzabbix -p123456 -hlocalhost zabbix < /usr/local/src/zabbix-2.2.6/database/mysql/images.sql
mysql -uzabbix -p123456 -hlocalhost zabbix < /usr/local/src/zabbix-2.2.6/database/mysql/data.sql
修改/etc/zabbix/zabbix_server.conf檔案
dbname=zabbix #資料庫名稱
dbuser=zabbix #資料庫使用者名稱
dbpassword=123456 #資料庫密碼
dbport=3306 #我機器資料庫埠是3306
dbsocket=/tmp/mysql.sock
listenip=127.0.0.1 #資料庫ip位址
修改/etc/httpd/conf.d/zabbix.conf 新增 php_value date.timezone asia/shanghai
到此時服務端就安裝完成了。
啟動服務 service zabbix-server start service zabbix-agent start service mysqld start service httpd start
訪問http://localhost/zabbix就可以訪問了,注意使用者名稱密碼為admin/zabbix
服務端不需要安裝agent就能監控的。如果介面上報the server is not running。。。錯誤,多半可能是沒連線上資料庫,檢視修改/etc/zabbix/zabbix-server.conf的值
Zabbix安裝配置
系統 centos7 環境 lamp server version apache 2.4.6 centos server version 5.7.19 mysql community server gpl php 7.0.22 cli built aug 9 2017 18 23 24 nts ro...
zabbix安裝配置
zabbix 是乙個web介面 提供分布式系統監視以及網路監視功能的企業級開源解決方案 zabbix有兩部分 乙個服務端乙個客戶端 zabbix server可以通過snmp,zabbix agent,ping,埠監視等方法提供對遠端伺服器 網路狀態的監視,資料收集等功能,它可以執行在linux,s...
Zabbix 安裝配置
配置zabbix yum源 rpm uvh rpm ivh 安裝zabbix 資料庫配置 systemctl start mariadb.service systemctl enable mariadb.service 1 設定資料庫密碼 mysqladmin uroot password 1111...