1. 最小安裝centos7
2. 開啟網絡卡
sed -i "s/onboot=no/onboot=yes/" /etc/sysconfig/network-scripts/ifcfg-ens33
3. 重啟網路服務
systemctl restart network
4. 安裝vim
yum -y install vim
5. 安裝epel倉庫
yum -y install epel-release
6. 更新系統
yum -y update
[root@test ~]# cat /etc/redhat-release
centos linux release 7.4.1708 (core)
7. 設定主機名
echo "test.zeng.com" > /etc/hostname
8. 關閉selinux
setenforce 0
sed -i "s/selinux=enforcing/selinux=disabled/g" /etc/sysconfig/selinux
9. 關閉firewalld(僅測試環境)
systemctl stop firewalld
systtemctl disable firewalld
10. 重啟系統
reboot
11. yum -y install wget
wget
wget
yum localinstall zabbix-release-3.4-2.el7.noarch.rpm
yum localinstall mysql57-community-release-el7-11.noarch.rpm
13. 安裝lamp
yum -y install php mysql-server
14. 啟動mysqld服務
systemctl start mysqld; systemctl enable mysqld
15. 找到mysql預設root密碼
grep password /var/log/mysqld.log
16. mysql安全初始化
mysql_secure_installation
17. 安裝zabbix
yum -y install zabbix-server-mysql zabbix-web-mysql
18. 匯入zabbix資料庫
cd /usr/share/doc/zabbix-server-mysql-3.4.1/
gzip -d create.sql.gz
mysql -u root -p
create database zabbix character set utf8 collate utf8_bin; # 建立zabbix資料庫
grant all privileges on zabbix.* to zabbix@localhost identified by 'redhat' with grant option; # 賦許可權
use zabbix;
source create.sql; # 導資料
flush privileges; exit;
19. 設定php時區
vim /etc/php.ini
date.timezone = asia/shanghai
20. 啟動httpd服務
21. 修改zabbix_server配置檔案
vim /etc/zabbix/zabbix_server.conf
dbpassword=redhat # 只需取消此行注釋,並輸入zabbix資料庫密碼
22. 啟動zabbix服務
systemctl start zabbix-server; systemctl enable zabbix-server
23. 檢視監聽埠
netstat -antupl
24. 將頁面語言設定為中文後,圖形顯示會有亂碼,此時需為zabbix web更換中文字型。
25. 找到字型存放目錄
find / -name fonts
cd /usr/share/zabbix/fonts
26. 在c:\windows\fonts目錄下找到喜歡的字型,如微軟雅黑(簡體中文),拷貝到 /usr/share/zabbix/fonts
27. 重新命名字型
cp graphfont.ttf graphfont.ttf.bak
cp msyhbd.ttc graphfont.ttf
28. 重啟zabbix服務
systemctl restart zabbix-server
29. 訪問zabbix web
預設使用者名稱: admin
預設密碼: zabbix
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...