1. 程式人生 > >Linux學習筆記5月24日任務

Linux學習筆記5月24日任務

zabbix

19.1 Linux監控平臺介紹

技術分享圖片技術分享圖片

19.2 zabbix監控介紹

技術分享圖片技術分享圖片

技術分享圖片技術分享圖片

19.3/19.4/19.6 安裝zabbix

技術分享圖片技術分享圖片

服務端全安裝,客戶端僅安裝zabbix-agent;

啟動mysql,#systemctl start mysql

查看錯誤日誌,#less /data/mysql/aminglinux-01.err完成啟動mysql

技術分享圖片技術分享圖片

[mysqld]裏增加character_set_server=utf8

登錄mysql,#mysql -uroot -paminglinux

登錄後創建zabbix庫,再創建用戶;

退出mysql,mysql>quit;

導入數據#cd /usr/share/doc/zabbix-server-mysql-3.2.7

#gzip -d create.sql.gz

#mysql -uroot -paminglinux zabbix < create.sql

#systemctl start zabbix-server

關掉nginx,占用了80端口,#/etc/init.d/nginx stop

#systemctl start httpd

#systemctl enable httpd

#systemctl enable zabbix-server

#systemctl disable nginx

#chkconfig nginx off

#less /var/log/zabbix/zabbix_server.log

技術分享圖片技術分享圖片

進入瀏覽器配置zabbix,查看監控情況,timezone報錯,#vi /etc/php.ini修改date.timezone=Asia/Shanghai

#systemctl restart httpd

刷新網頁,OK後,下一步,

技術分享圖片技術分享圖片

下一步,填寫自定義計算機名,完成。

技術分享圖片技術分享圖片

19.5 忘記Admin密碼如何做

技術分享圖片技術分享圖片

#mysql -uroot -paminglinux

mysql>use zabbix

mysql>desc users

mysql>update users set passwd=md5( 'lishiming1' ) where alias= 'Admin' ;


Linux學習筆記5月24日任務