配置yum環(huán)境
1亥贸、[root@localhost ~]# wget https://mirrors.aliyun.com/repo/Centos-7.repo
2缕粹、[root@localhost ~]# yum clean all && yum install -y epel-release
3旁蔼、[root@localhost ~]# rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm
部署LNMP環(huán)境
1苹享、[root@localhost ~]# yum install -y gcc curl curl-devel ladp nginx mariadb-server mariadb mariadb-devel net-snmp net-snmp-devel libevent-devel libxml2-devel php71w php71w-fpm php71w-mbstring php71w-common php71w-gd php71w-mcrypt php71w-mysql php71w-xml php71w-cli php71w-devel php71w-pecl-memcached php71w-pecl-redis php71w-opcache php71w-tidy php71w-bcmath? ? ? ? ? ? #安裝nginx、mysql蛀柴、php 以及依賴的其他組件
2劣坊、[root@localhost ~]# systemctl start nginx? ? ? ? ?#啟動nginx
? ? ? [root@localhost ~]# systemctl enable nginx? ? ? ? #設(shè)置開啟啟動nginx服務(wù)
3嘀倒、[root@localhost ~]# systemctl start mariadb? ? ? ? #啟動mariadb?
? ? ? [root@localhost ~]# systemctl enable mariadb? ? ? ? #設(shè)置開啟啟動mariadb?
4、[root@localhost ~]# systemctl start php-fpm.service? ? ? ?#啟動php-fpm
? ? ? [root@localhost ~]# systemctl enable php-fpm? ? ?#設(shè)置開啟啟動php-fpm
編輯Nginx配置文件
1局冰、[root@localhost ~]# vim /etc/nginx/nginx.conf? ? ?#編輯nginx.conf配置文件?
location / {
????index index.html index.php;
????try_files $uri $uri/ /index.php?$query_string;
?}? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? #大概位置在47行
location ~* \.php$ {
????root /;
????fastcgi_index index.php;
????fastcgi_pass 127.0.0.1:9000;
????fastcgi_param? SCRIPT_FILENAME? /usr/share/nginx/html$fastcgi_script_name;
????include fastcgi_params;
?}? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?#大概位置在51行
2墨叛、[root@localhost ~]# nginx -t? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?#驗證nginx配置文件
3仿荆、[root@localhost nginx]# nginx -s reload? ? ? ? ? ? ? ? #重新加載nginx配置文件
關(guān)閉SELinux以及開放nginx端口
1、[root@localhost ~]# setenforce 0? ? ? ? ? ? ? ? ? ? ? ? ? ? #臨時關(guān)閉selinux
2、[root@localhost ~]# sed -i 's/SELINUX=enforcing/SELINUX=disabled/' /etc/selinux/config
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? #永久關(guān)閉selinux
3字币、[root@localhost ~]# grep SELINUX=disabled /etc/selinux/config? #查看是否更改成功
4畜挨、[root@localhost ~]# firewall-cmd --zone=public --add-port=80/tcp --permanent? ?#開放80端
5除盏、[root@localhost ~]# firewall-cmd --reload? ? ? ? ? ? ? ? ?#重新加載防火墻規(guī)則?
編寫php測試頁面
1款慨、[root@localhost ~]# vim /usr/share/nginx/html/index.php? ? #創(chuàng)建并編輯測試文件
?2、? ?<?php
????????????phpinfo( );
?????????>? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? #內(nèi)容
3产雹、瀏覽器驗證http://ip/index.php是否成功诫惭,如果出現(xiàn)php版本等信息,則是php配置成功蔓挖。
mariadb數(shù)據(jù)庫配置
1夕土、[root@localhost ~]# mysql_secure_installation? ? ? ? ? ? #首次進入數(shù)據(jù)庫
2、Set root password? [Y/n]? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?#是否設(shè)置root密碼?
3时甚、Thanks for using MariaDB!? ? ? ? ? ? ? ? ? ? ? #設(shè)置完口令后隘弊,一直回車
4、[root@localhost ~]# mysql -uroot -p? ? ? ? ? ? ?#使用root賬戶訪問數(shù)據(jù)庫
5荒适、MariaDB [(none)]> create database zabbix character set utf8 collate utf8_bin;
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?#創(chuàng)建zabbix數(shù)據(jù)庫
6梨熙、MariaDB [(none)]> grant all privileges on zabbix.* to zabbix@localhost identified by 'zabbix用戶的密碼';
7、MariaDB [(none)]> flush privileges;
8刀诬、MariaDB [(none)]> exit
修改php配置文件
1咽扇、[root@localhost ~]# cp /etc/php.ini{,.bak}? ? ? ? ? ? ? ? ?#備份php.ini
2、[root@localhost ~]# vim /etc/php.ini? ? ? ? ? ? ? ? ? ? ?#編輯配置文件
? ??????max_execution_time = 300
? ? ? ? max_input_time = 300
? ? ? ? post_max_size = 16M
? ? ? ? date.timezone = Asia/Shanghai
3陕壹、[root@localhost ~]# systemctl reload php-fpm? ? ? ? ? #重新加載配置文件
? ? ? [root@localhost ~]# systemctl restart php-fpm? ? ?#重啟php-fpm服務(wù)
使用源碼安裝zabbix 4.0.5
1质欲、[root@localhost ~]# wget https://sourceforge.net/projects/zabbix/files
/ZABBIX%20Latest%20Stable/4.0.5/zabbix-4.0.5.tar.gz? ? ? ?#下載zabbix源碼包
2、[root@localhost ~]# tar xf zabbix-4.0.5.tar.gz -C /usr/src/? ? ? ? ?#解壓
3糠馆、[root@localhost ~]# cd /usr/src/zabbix-4.0.5/
4嘶伟、[root@localhost ~]#?useradd -M -s /sbin/nologin zabbix
? ? ? ? ?# 對于所有zabbix守護進程,需要一個非特權(quán)用戶又碌。如果從非特權(quán)用戶帳戶啟動zabbix守護程序九昧,它將以該用戶身份運行。但是毕匀,如果守護程序是從“root”帳戶啟動的铸鹰,它將切換到“zabbix”用戶帳戶,該帳戶必須存在皂岔。要創(chuàng)建這樣的用戶帳戶(在其自己的組中蹋笼,“zabbix”)
5、./configure -prefix=/usr/local/zabbix -enable-server -enable-agent -with-mysql -enable-ipv6 -with-net-snmp -with-libcurl -with-libxml2 && make && make install?
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?#編譯并安裝
6躁垛、[root@localhost zabbix-4.0.5]# cp -r frontends/php/ /usr/share/nginx/html/zabbix
配置zabbix配置文件
1剖毯、[root@localhost zabbix-4.0.5]# cd /usr/local/zabbix/etc/
2、[root@localhost etc]# cp zabbix_server.conf{,.bak}
3教馆、[root@localhost etc]# vim zabbix_server.conf
? ????118 ????DBPassword=zabbix賬戶的密碼
編輯數(shù)據(jù)庫腳本
1速兔、[root@localhost zabbix-4.0.5]# cd /usr/src/zabbix-4.0.5/database/mysql/
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? #進入數(shù)據(jù)庫腳本文件夾內(nèi)
2、[root@localhost zabbix-4.0.5]#? yum install -y nano? ? ? ?#安裝nano并編輯腳本文件
3活玲、[root@localhost zabbix-4.0.5]#? nano data.sql? ? ? ? ? ? ? ??
? ? ? ? USE zabbix涣狗;? ? ? ? ? ? ? ? ? ? ? ? ? #文件首行加入,引用該數(shù)據(jù)庫
4舒憾、[root@localhost zabbix-4.0.5]#?nano schema.sql? ? ? ? ? ? ? ?#同上
5镀钓、[root@localhost zabbix-4.0.5]#?nano?images.sql? ? ? ? ? ? ? ? #同上
執(zhí)行數(shù)據(jù)庫腳本寫庫
1、[root@localhost mysql]# mysql -u zabbix -p zabbix < /usr/src/zabbix-4.0.5/database/mysql/schema.sql
2镀迂、[root@localhost mysql]# mysql -u zabbix -p zabbix < /usr/src/zabbix-4.0.5/database/mysql/images.sql
3丁溅、[root@localhost mysql]# mysql -u zabbix -p zabbix < /usr/src/zabbix-4.0.5/database/mysql/data.sql
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?#執(zhí)行順序不能改變
WEB頁面執(zhí)行zabbix安裝向?qū)?/h1>
1、瀏覽器:http://ip/zabbix/setup.php
2探遵、Check of pre-requisites 步 如果出現(xiàn)PHP LDAP????off????Warning窟赏,則需要安裝ladp妓柜;
3、[root@localhost ~]# yum search?ldap? ? ? ? ? ? ? ? ? ? ? #搜索ldap
4涯穷、[root@localhost ~]# yum install php71w-ldap.x86_64? ? ? ?#php版本7.1使用該包
5棍掐、[root@localhost ~]# systemctl restart php-fpm? ? ? ? ? #重啟php-fpm服務(wù)
6、刷新web安裝向?qū)ы撁婵娇觯瑘箦e消失
1、瀏覽器:http://ip/zabbix/setup.php
2探遵、Check of pre-requisites 步 如果出現(xiàn)PHP LDAP????off????Warning窟赏,則需要安裝ladp妓柜;
3、[root@localhost ~]# yum search?ldap? ? ? ? ? ? ? ? ? ? ? #搜索ldap
4涯穷、[root@localhost ~]# yum install php71w-ldap.x86_64? ? ? ?#php版本7.1使用該包
5棍掐、[root@localhost ~]# systemctl restart php-fpm? ? ? ? ? #重啟php-fpm服務(wù)
6、刷新web安裝向?qū)ы撁婵娇觯瑘箦e消失
7作煌、填寫數(shù)據(jù)庫密碼
8、填寫name
9赚瘦、下一步至配置文件下載頁面粟誓,下載配置文件
10、上傳配置文件至cd /usr/share/nginx/html/zabbix/conf/
? ? ? ??[root@localhost ~]# cd /usr/share/nginx/html/zabbix/conf/
? ??????[root@localhost ~]#? cd ..
? ??????[root@localhost ~]#?chmod 777 conf? ? ? ? ?#給conf文件讀寫權(quán)限
11起意、完成后鹰服,刷新向?qū)ы撁妗?/p>
12、使用默認賬戶Admin揽咕、口令zabbix登錄
開放10050获诈、10051端口
1、firewall-cmd?--zone=public--add-port=10050/tcp?--permanent
2心褐、firewall-cmd?--zone=public--add-port=10051/tcp?--permanent
3舔涎、firewall-cmd?--reload
啟動zabbix-server與zabbix-agent
1、[root@localhost ~]# /usr/local/zabbix/sbin/zabbix_server? ? ? ? ? ? #啟動服務(wù)
? ? ? ? ? ? 如果出現(xiàn)cannot run as root!逗爹,需要創(chuàng)建一個zabbix用戶????????useradd zabbix
2亡嫌、[root@localhost ~]# /usr/local/zabbix/sbin/zabbix_agentd? ? ? ? #啟動agent監(jiān)控自身
3、[root@localhost ~]# netstat -lnpt | egrep '10050|10051'? ? ? ? ? ?#查看服務(wù)是否啟動
tcp ???? 0 0 0.0.0.0:10050 ???? 0.0.0.0:* ???? LISTEN???? 32350/zabbix_agentd
tcp ???? 0 0 0.0.0.0:10051 ???? 0.0.0.0:* ???? LISTEN???? 32274/zabbix_server
tcp6 ???? 0 0 :::10050???????????? :::*? ? ? ? ? ? ? ? ?LISTEN ???? 32350/zabbix_agentd
tcp6 ???? 0 0 :::10051???????????? :::* ???????????? LISTEN ???????? 32274/zabbix_server?
更改顯示語言
安裝配置客戶端agent
1掘而、[root@localhost ~]# rpm -Uvh https://repo.zabbix.com/zabbix/4.0/rhel/7/x86_64/zabbix-release-4.0-1.el7.noarch.rpm
2挟冠、[root@localhost ~]# yum -y install zabbix-agent
3、[root@localhost ~]# cd /etc/zabbix/? ? ? ? ? ? ? ? ? ? ? ? ? ? ? #進入zabbix-agent目錄下
4袍睡、更改下面配置
????PidFile=/var/run/zabbix/zabbix_agentd.pid
????LogFile=/var/log/zabbix/zabbix_agentd.log? #錯誤日志
????LogFileSize=0
????ListenPort=10050? #啟動監(jiān)聽端口
????StartAgents=3 #被動模式下選擇知染,主動模式則為0
????ListenIP=0.0.0.0 #監(jiān)聽所有IP
????Server=10.27.146.250 #被動模式下必填,將zabbix-server端的ip填入
????#ServerActive=10.27.146.250 #主動模式下填寫
????Hostname=Api1Bearead #本機的hostname斑胜,此值必須與zabbix的網(wǎng)頁上創(chuàng)建的主機名一致即可
????Include=/etc/zabbix/zabbix_agentd.d/