zabbix安裝與配置
阿新 • • 發佈:2018-12-04
在centos7.3上安裝zabbix4.0
#安裝mariadb10.3資料庫 [mariadb] name=MariaDB baseurl=http://mirrors.ustc.edu.cn/mariadb/yum/10.3/centos7-amd64/ gpgkey=http://mirrors.ustc.edu.cn/mariadb/yum/RPM-GPG-KEY-MariaDB gpgcheck=1 #安裝zabbix4.0的源 rpm -ivh https://repo.zabbix.com/zabbix/4.0/rhel/7/x86_64/zabbix-release-4.0-1.el7.noarch.rpm #安裝zabbix所需的元件yum install zabbix-server-mysql zabbix-web-mysql zabbix-agent # mysql -uroot -proot mysql> create database zabbix character set utf8 collate utf8_bin; mysql> grant all privileges on zabbix.* to [email protected] identified by 'zabbix'; mysql> quit; #匯入zabbix伺服器所需要的表和資料 zcat /usr/share/doc/zabbix-server-mysql*/create.sql.gz | mysql -uzabbix -p zabbix#編輯檔案/etc/zabbix/zabbix_server.conf DBPassword=zabbix #編輯檔案設定時區/etc/httpd/conf.d/zabbix.conf php_value date.timezone Europe/Riga(開啟註釋) #啟動服務和開機自啟 systemctl restart zabbix-server zabbix-agent httpd systemctl enable zabbix-server zabbix-agent httpd #瀏覽器訪問 http://server_ip/zabbix #有亂碼方塊的解決辦法 在windows下的C:\Windows\Fonts下找到宋體字檔案simsun.ttc 上傳到linux伺服器中 cd/usr/share/zabbix/fonts #將原來的字型備份 mv graphfont.ttf graphfont.ttf.bak #把windows中的字型改名為graphfont.ttf mv simsun.ttc graphfont.ttf