環境:centos7 機器 兩台 server 和 client
本次操作使用zabbix4.0 **:
rpm -ivh http:
//repo
.zabbix.com
/zabbix/4
.4
/rhel/7/x86_64/zabbix-release-4
.4-1.el7.noarch.rpm(目前新版4.4版本)
[root@node1 ~]# cat /etc/yum.repos.d/zabbix.repo[zabbix]
name=zabbix official repository - $basearch
baseurl=
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=
enabled=1
gpgkey=file:///etc/pki/rpm-gpg/rpm-gpg-key-zabbix
gpgcheck=1
安裝zabbix相關元件
yum -y install zabbix-server-mysql zabbix-web-mysql zabbix-agent mariadb mariadb-server
啟動資料庫,設定開機自啟
systemctl enable mariadb.servicesystemctl start mariadb.service
登入mysql,並建立zabbix資料庫,授權使用者,用以登入zabbix資料庫
[root@node1 ~]# mysqlwelcome to the mariadb monitor. commands end with ; or \g.
your mariadb connection id is 2
server version: 5.5.64-mariadb mariadb server
type 'help;' or '\h' for help. type '\c' to clear the current input statement.
建立名為zabbix的庫
mariadb [(none)]> create database zabbix charset 'utf8';
query ok, 1 row affected (0.00 sec)
授權zabbix使用者在 任意主機訪問zabbix庫
mariadb [(none)]> grant all on zabbix.* to zabbix@localhost identified by '123';
query ok, 0 rows affected (0.00 sec)
mariadb [(none)]> flush privileges;
query ok, 0 rows affected (0.00 sec)
mariadb [(none)]>
匯入zabbix初始資料庫 注意路徑,不同版本zabbix路徑名大同小異
zcat /usr/share/doc/zabbix-server-mysql-4.0.14/create.sql.gz |mysql -uzabbix -p123 zabbix
編輯zabbix-server配置檔案,配置資料庫資訊
[root@node1 ~]# cat /etc/zabbix/zabbix_server.conf |grep "^db"dbhost=localhost
dbname=zabbix
dbuser=zabbix
dbpassword=123
設定時區
進入php.ini 配置
vim /etc/php.ini;date.timezone = asia/shanghai
下一步,啟動所有服務
檢視相關埠是否監聽 server監聽10051 client監聽 10050
netstat -ntlp | grep 10051 (server監聽)
netstat -ntlp | grep 10050 (client監聽)
瀏覽器訪問本機ip, 注意關閉防火牆
使用預設管理員登入
賬號: admin
密碼: zabbix
中文亂碼問題解決方式:
將我們選擇的字型檔案上傳到zabbix web服務, /usr/share/zabbix/assets/fonts目錄下(rpm安裝目錄)
rm -rf graphfont.ttfmv simkai.ttf graphfont .ttf
授權644
chmod 644 graphfont.ttf
客戶端:
1.安裝zabbix的rpm源
rpm -ivh
2.安裝zabbix-agent
yum -y install zabbix-agent
3.編輯配置檔案
vim /etc/zabbix/zabbix_agent.confserver=server .ip #寫zabbix的服務端ip
serveractice=server.ip #zabbix的服務端
systemctl restart zabbix-agent
Zabbix 安裝部署
linux centos 5.6 mysql 5.7 zabbix 2.4.8 php 5.6.23 apache 安裝相關 yum y install net snmp net snmp devel curl curl devel perl dbi 安裝apache mysql 已經安裝 安裝ph...
zabbix安裝部署
zabbix是經常在運維的工作中會經常用到的乙個軟體,下面簡單的介紹下安裝部署以及設定報警的過程。下面簡單的介紹下操作過程。環境介紹 zabbix server 192.168.10.185 zabbix agent 192.168.10.113 1 zabbix的安裝 zabbix的安裝需要的是l...
ZABBIX 安裝部署
安裝repo庫 wget dpkg i zabbix release 4.0 2 xenial all.deb sudo apt update 複製 安裝zabbix server frontend agentsudo apt install zabbix server mysql zabbix f...