亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Centos7.2編譯安裝zabbix3.2的方法

發布時間:2021-05-31 12:24:59 來源:億速云 閱讀:185 作者:小新 欄目:服務器

這篇文章將為大家詳細講解有關Centos7.2編譯安裝zabbix3.2的方法,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

Zabbix簡介

zabbix簡介zabbix是完全開源的工具,整合了cacti和nagios等特性,SNMP(udp 161  udp 162)眾多網絡工具都支持此協議,比如常見路由交換,常見OS可以做管理端,也可以做被管理端,snmp大致的三個版本分為v1 v2 v3,無論是v1和v2他們的安全性還是比較差的,因為傳輸的是明文的,v3的認證密碼用 MD5/SHA摘要算法加密。

很多工具都支持網絡管理的功能,而對非網絡設備(操作系統)可以完全拋開snmp這種不安全的架構來實現監控的,所以很多工具都是控制端和agent架構,他們有專屬的agent。

Zabbix的主要功能:

具備常見的商業監控軟件具備的功能比如:(主機性能的監控,網絡設備性能的監控,數據庫,ftp等通用協議的監控)還具備有告警方式,詳細的報表圖表的繪制。

支持自動發現網絡設備和服務器,可以通過配置自動發現服務器規則來實現,支持分布式,能集中展示,管理分布式的監控點,擴展性強server提供通過接口(api功能)可以自己開發完善各類的監控,根據相關接口編寫程序實現編寫插件容易,可以自定義監控項,報警級別的設置。數據收集,支持snmp(包括trapping and polling) IPMI JMX SSH TELNEL;

自定義的檢測;自定義收集數據的頻率;

服務器/代理和客戶端模式;靈活的觸發器;可以定義非常靈活的問題閥值,稱為觸發器,高可定制的報警,發送通過,可定制報警的升級,收件人媒體類型,cpu負荷,內存使用,磁盤使用,網絡狀況,端口監視,日志監視等等;

硬件監控:

  1. Zabbix IPMI Interface 系統監控:

  2. ZabbixAgent Interface Java監控:

  3. Zabbix JMX Interface 網絡設備監控:

  4. Zabbix SNMP Interface 應用服務監控:

  5. Zabbix Agent UserParameter MySQL數據庫監控:percona-monitoring-plulgins   URL監控:Zabbix Web 監控zabbix重要組件

說明:1)zabbix server:負責接收agent發送的報告信息的核心組件,所有配置、統計數據及操作數據都由它組織進行;
2)database storage:專用于存儲所有配置信息,以及由zabbix收集的數據;
3)web interface:zabbix的GUI接口;
4)proxy:可選組件,常用于監控節點很多的分布式環境中,代理server收集部分數據轉發到server,可以減輕server的壓力;
5)agent:部署在被監控的主機上,負責收集主機本地數據如cpu、內存、數據庫等數據發往server端或proxy端;另外,zabbix server、proxy、agent都有自己的配置文件以及log文件;一個監控系統運行的大概的流程是這樣的:agentd需要安裝到被監控的主機上,它負責定期收集各項數據,并發送到zabbix server端,zabbix server將數據存儲到數據庫中,zabbix web根據數據在前端進行展現和繪圖。

這里agentd收集數據分為主動和被動兩種模式:

主動:agent請求server獲取主動的監控項列表,并主動將監控項內需要檢測的數據提交給server/proxy

被動:server向agent請求獲取監控項的數據,agent返回數據。Zabbix是一個基于Web界面的提供分布式系統監視以及網絡監視功能的企業級開源解決方案。借助Zabbix,可以很輕松地減輕運維人員們繁重的服務器管理任務,實現業務系統的持續運行。

下面會逐步介紹Zabbix分布式監控系統的部署及使用配置好IP、DNS 、網關,確保使用遠程連接工具能夠連接服務器zabbix監控服務器:192.168.146.100  #zabbix的服務端(若要監控本機,則需要配置本機的zabbix agent)Zabbix agent被監控主機:192.168.146.110 #zabbix的客戶端(被監控端,需要配置Zabbix agent)

一、編譯安裝Zabbix3.21

安裝編譯工具及庫文件

復制代碼 代碼如下:


yum-y install make apr* autoconf automake curl-devel gcc gcc-c++  openssl openssl-devel gd kernel keyutilspatch perl kernel-headers compat* mpfr cpp glibc libgomp libstdc++-develkeyutils-libs-devel libcom_err-devel libsepol-devel libselinux-devel krb5-develzlib-devel libXpm* freetype libjpeg* libpng* libtool* libxml2 libxml2-devel patch libcurl-devel bzip2-devel freetype-devel2)

 Centos7.2編譯安裝zabbix3.2的方法

2)安裝MySQL5.7并安裝gcc編譯器如下

[root@yankerp-zabbix ~]# yum install gcc gcc-c++ -y

因為在Centos7中默認安裝了mysql的分支mariadb 所以需要卸載mariadb

[root@yankerp-zabbix src]# rpm -qa | grep mariadb 
mariadb-libs-5.5.44-2.el7.centos.x86_64 
[root@yankerp-zabbix src]# rpm -e mariadb-libs-5.5.44-2.el7.centos.x86_64 --nodeps

安裝Mysql

下載MySQL二進制包

復制代碼 代碼如下:


[root@yankerp-zabbix src]# wget http://mirrors.sohu.com/mysql/MySQL-5.7/mysql-5.7.18-linux-glibc2.5-x86_64.tar.gz 

解壓Mysql二進制包,并拷貝到/usr/local/mysql目錄下

[root@yankerp-zabbix src]# tar zxf mysql-5.7.18-linux-glibc2.5-x86_64.tar.gz 
[root@yankerp-zabbix src]# mv mysql-5.7.18-linux-glibc2.5-x86_64 /usr/local/mysql

進入/usr/local/mysql/目錄創建data目錄以及log目錄,并給予data755權限。

[root@yankerp-zabbix src]# cd /usr/local/mysql/ 
[root@yankerp-zabbix mysql]# mkdir data 
[root@yankerp-zabbix mysql]# mkdir log 
[root@yankerp-zabbix mysql]# chmod +755 data/

設置變量

復制代碼 代碼如下:


echo "export PATH=$PATH:/usr/local/mysql/bin" >> /etc/profile && source /etc/profile 

創建mysql組,以及mysql用戶

復制代碼 代碼如下:


[root@yankerp-zabbix mysql]# groupadd mysql && useradd -r -g mysql -s /bin/false mysql 

打開/etc/my.cnf添加MySQL的主配置文件如下:

vim /etc/my.cnf

[client] 
socket=/usr/local/mysql/mysql.sock 
[mysqld] 
basedir=/usr/local/mysql 
datadir=/usr/local/mysql/data 
pid-file=/usr/local/mysql/data/mysqld.pid 
socket=/usr/local/mysql/mysql.sock 
log_error=/usr/local/mysql/log/mysql.err

初始化MySQL數據庫

復制代碼 代碼如下:


[root@yankerp-zabbix mysql]# chmod 750 data/ && chown -R mysql . && chgrp -R mysql . && bin/mysqld --initialize --user=mysql 

復制Mysql啟動腳本,并啟動mysql數據庫

復制代碼 代碼如下:


cp /usr/local/mysql/support-files/mysql.server /etc/init.d/mysqld && service mysqld start 

Centos7.2編譯安裝zabbix3.2的方法

啟動完成后mysql的密碼存放到了/usr/local/mysql/log/目錄下

[root@yankerp-zabbix mysql]# cat /usr/local/mysql/log/mysql.err | grep password 
2018-01-06T06:31:34.837627Z 1 [Note] A temporary password is generated for root@localhost: s>2%8=/q>sKP

進入Mysql數據庫并修改mysql數據庫密碼

 Centos7.2編譯安裝zabbix3.2的方法

Centos7.2編譯安裝zabbix3.2的方法

到這里MySQL的安裝正式完成

二、安裝Nginx

1)安裝pcre-devel zlib-devel 相關支持包

[root@yankerp-zabbix ~]# yum install zlib-devel pcre-devel -y

2)創建www組以及www用戶

[root@yankerp-zabbix ~]# groupadd www 
[root@yankerp-zabbix ~]# useradd -g www www -s /sbin/nologin

3)下載Nginx源碼包

[root@yankerp-zabbix ~]# wget http://nginx.org/download/nginx-1.10.2.tar.gz

4)解壓Nginx源碼包并進入Nginx解壓目錄

[root@yankerp-zabbix ~]# tar zxf nginx-1.10.2.tar.gz 
[root@yankerp-zabbix ~]# cd nginx-1.10.2

復制代碼 代碼如下:


[root@yankerp-zabbix nginx-1.10.2]# ./configure --prefix=/usr/local/nginx1.10 --with-http_dav_module --with-http_stub_status_module --with-http_addition_module --with-http_sub_module  --with-http_flv_module --with-http_mp4_module   --with-http_ssl_module --with-http_gzip_static_module --user=www --group=www

make && make install

5)創建軟連接,優化執行路徑,并啟動Nginx服務

Centos7.2編譯安裝zabbix3.2的方法

訪問測試:

Centos7.2編譯安裝zabbix3.2的方法

三、安裝PHP

[root@yankerp-zabbix ~]# wget ftp://mcrypt.hellug.gr/pub/crypto/mcrypt/libmcrypt/libmcrypt-2.5.7.tar.gz 
[root@yankerp-zabbix ~]# tar zxf libmcrypt-2.5.7.tar.gz 
[root@yankerp-zabbix ~]# cd libmcrypt-2.5.7/
[root@yankerp-zabbix libmcrypt-2.5.7]# ./configure && make && make install
ln -s /usr/local/mysql/lib/libmysqlclient.so.20.3.0 /usr/local/mysql/lib/libmysqlclient_r.so

下載PHP源碼包

[root@yankerp-zabbix ~]# tar zxf php-5.6.27.tar.gz 
[root@yankerp-zabbix ~]# cd php-5.6.27/ 
[root@yankerp-zabbix php-5.6.27]# ./configure --prefix=/usr/local/php5.6 --with-config-file-path=/etc --with-mysql=/usr/local/mysql --with-mysqli=/usr/local/mysql/bin/mysql_config --with-mysql-sock=/usr/local/mysql/mysql.sock --with-gd --with-iconv --with-libxml-dir=/usr --with-mhash --with-mcrypt --with-config-file-scan-dir=/etc/php.d --with-bz2 --with-zlib --with-freetype-dir --with-png-dir --with-jpeg-dir --enable-xml --enable-bcmath --enable-shmop --enable-sysvsem --enable-inline-optimization --enable-mbregex --enable-fpm --enable-mbstring --enable-ftp --enable-gd-native-ttf --with-openssl --enable-pcntl --enable-sockets --with-xmlrpc --enable-zip --enable-soap --without-pear --with-gettext --enable-session --with-mcrypt --with-curl && make && make install
[root@yankerp-zabbix php-5.6.27]# cp php.ini-production /etc/php.ini

編輯配置文件/etc/php.ini ,修改后的內容如下:

找到:
;date.timezone =
修改為:
date.timezone = PRC #設置時區
找到:
expose_php = On
修改為:
expose_php = Off #禁止顯示php版本的信息
找到:
short_open_tag = Off
修改為:
short_open_tag = On //支持php短標簽
找到:
post_max_size = 8M
修改為:
post_max_size = 16M  //上傳文件大小
找到:
max_execution_time = 30
修改為:
max_execution_time = 300  //php腳本最大執行時間
找到:
max_input_time = 60
修改為:
max_input_time = 300  //以秒為單位對通過POST、GET以及PUT方式接收數據時間進行限制
always_populate_raw_post_data = -1
mbstring.func_overload = 0

創建php服務啟動腳本

[root@yankerp-zabbix php-5.6.27]# cp sapi/fpm/init.d.php-fpm /etc/init.d/php-fpm 
[root@yankerp-zabbix php-5.6.27]# chmod +x /etc/init.d/php-fpm 
[root@yankerp-zabbix php-5.6.27]# chkconfig --add php-fpm 
[root@yankerp-zabbix php-5.6.27]# chkconfig php-fpm on 
[root@yankerp-zabbix php-5.6.27]#cp /usr/local/php5.6/etc/php-fpm.conf.default /usr/local/php5.6/etc/php-fpm.conf
[root@yankerp-zabbix php-5.6.27]#vim /usr/local/php5.6/etc/php-fpm.conf

修改內容如下:

pid = run/php-fpm.pid
user = www
group = www
listen =127.0.0.1:9000
pm.max_children = 300
pm.start_servers = 10
pm.min_spare_servers = 10
pm.max_spare_servers =50

啟動PHP-FPM服務

Centos7.2編譯安裝zabbix3.2的方法

配置Nginx并解析php

#user nobody; 
worker_processes 1; 
 
#error_log logs/error.log; 
#error_log logs/error.log notice; 
#error_log logs/error.log info; 
 
#pid  logs/nginx.pid; 
 
 
events { 
 worker_connections 1024; 
} 
 
 
http { 
 include  mime.types; 
 default_type application/octet-stream; 
 
 #log_format main '$remote_addr - $remote_user [$time_local] "$request" ' 
 #     '$status $body_bytes_sent "$http_referer" ' 
 #     '"$http_user_agent" "$http_x_forwarded_for"'; 
 
 #access_log logs/access.log main; 
 
 sendfile  on; 
 #tcp_nopush  on; 
 
 #keepalive_timeout 0; 
 keepalive_timeout 65; 
 
 #gzip on; 
 
 server { 
  listen  80; 
  server_name localhost; 
 
  #charset koi8-r; 
 
  #access_log logs/host.access.log main; 
 
  location / { 
   root html; 
   index index.php index.html index.htm; 
  } 
 
  #error_page 404    /404.html; 
 
  # redirect server error pages to the static page /50x.html 
  # 
  error_page 500 502 503 504 /50x.html; 
  location = /50x.html { 
   root html; 
  } 
 
  # proxy the PHP scripts to Apache listening on 127.0.0.1:80 
  # 
  #location ~ \.php$ { 
  # proxy_pass http://127.0.0.1; 
  #} 
 
  # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 
  # 
  location ~ \.php$ { 
   root   html; 
   fastcgi_pass 127.0.0.1:9000; 
   fastcgi_index index.php; 
   fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name; 
   include  fastcgi.conf; 
  } 
 
  # deny access to .htaccess files, if Apache's document root 
  # concurs with nginx's one 
  # 
  #location ~ /\.ht { 
  # deny all; 
  #} 
 } 
 
 
 # another virtual host using mix of IP-, name-, and port-based configuration 
 # 
 #server { 
 # listen  8000; 
 # listen  somename:8080; 
 # server_name somename alias another.alias; 
 
 # location / { 
 #  root html; 
 #  index index.html index.htm; 
 # } 
 #} 
 
 
 # HTTPS server 
 # 
 #server { 
 # listen  443 ssl; 
 # server_name localhost; 
 
 # ssl_certificate  cert.pem; 
 # ssl_certificate_key cert.key; 
 
 # ssl_session_cache shared:SSL:1m; 
 # ssl_session_timeout 5m; 
 
 # ssl_ciphers HIGH:!aNULL:!MD5; 
 # ssl_prefer_server_ciphers on; 
 
 # location / { 
 #  root html; 
 #  index index.html index.htm; 
 # } 
 #} 
 
}

在html目錄下創建test.php寫入測試頁訪問測試:

Centos7.2編譯安裝zabbix3.2的方法

寫入MySQL測試頁

vim /usr/local/nginx/html/test2.php

<?php 
$link=mysql_connect('localhost','root','123456'); 
if($link) echo "ok"; 
mysql_close(); 
?>

Centos7.2編譯安裝zabbix3.2的方法

出現以上圖片證明LNMP環境已經可以正常工作!

四、正式安裝Zabbix,以上只是搭建環境下面正式安裝zabbix

此環境需要提前安裝好LNMP環境(MySQL,Nginx,PHP的安裝目錄均是/usr/local/下)

創建zabbix運行用戶

[root@yankerp-zabbix ~]# groupadd zabbix 
[root@yankerp-zabbix ~]# useradd -g zabbix zabbix

安裝所需的包

復制代碼 代碼如下:


[root@yankerp-zabbix ~]#yum install -y net-snmp net-snmp-devel curl-devel java-1.8.0-openjdk java-1.8.0-openjdk-devel  OpenIPMI-devel  libssh3-devel

安裝fping

[root@yankerp-zabbix ~]# tar zxf fping-3.10.tar.gz  
[root@yankerp-zabbix ~]# cd fping-3.10/ 
[root@yankerp-zabbix fping-3.10]# ./configure && make && make install 
[root@yankerp-zabbix fping-3.10]# chown root:zabbix /usr/local/sbin/fping  
[root@yankerp-zabbix fping-3.10]# chmod 4710 /usr/local/sbin/fpin

安裝zabbix-server

[root@yankerp-zabbix ~]# tar zxf zabbix-3.2.1.tar.gz  
[root@yankerp-zabbix ~]# cd zabbix-3.2.1/

復制代碼 代碼如下:


[root@yankerp-zabbix zabbix-3.2.1]# ./configure --prefix=/usr/local/zabbix --enable-server --enable-agent --enable-java --with-mysql=/usr/local/mysql/bin/mysql_config --with-net-snmp --with-libcurl --with-openipmi

在編譯的時候最好帶上--enable-java這個參數,方便后續監控tomcat等程序。

make && make install

添加系統軟連接

[root@yankerp-zabbix zabbix-3.2.1]# ln -s /usr/local/zabbix/bin/* /usr/local/bin/ 
[root@yankerp-zabbix zabbix-3.2.1]# ln -s /usr/local/zabbix/sbin/* /usr/local/sbin/

創建zabbix數據庫和Mysql用戶:

mysql> create database zabbix character set utf8; 
Query OK, 1 row affected (0.18 sec) 
 
mysql> grant all privileges on zabbix.* to zabbix@localhost identified by 'zabbix'; 
Query OK, 0 rows affected, 1 warning (0.37 sec) 
 
mysql>

導入zabbix初始數據;(切換到zabbix目錄)

/root/zabbix-3.2.1/database/mysql 
[root@yankerp-zabbix mysql]# mysql -uzabbix -pzabbix -hlocalhost zabbix < schema.sql  
mysql: [Warning] Using a password on the command line interface can be insecure. 
[root@yankerp-zabbix mysql]# mysql -uzabbix -pzabbix -hlocalhost zabbix < images.sql  
mysql: [Warning] Using a password on the command line interface can be insecure. 
[root@yankerp-zabbix mysql]# mysql -uzabbix -pzabbix -hlocalhost zabbix < data.sql  
mysql: [Warning] Using a password on the command line interface can be insecure.

編輯/usr/local/zabbix/etc/zabbix_server.conf(修改如下)

LogFile=/usr/local/zabbix/logs/zabbix_server.log
PidFile=/usr/local/zabbix/logs/zabbix_server.pid
DBHost=localhost
DBName=zabbix
DBUser=zabbix
DBPassword=zabbix
DBPort=3306
FpingLocation=/usr/local/sbin/fping
[root@yankerp-zabbix mysql]# mkdir -p /usr/local/zabbix/logs 
[root@yankerp-zabbix mysql]# chown -R zabbix:zabbix /usr/local/zabbix/

啟動zabbix server

Centos7.2編譯安裝zabbix3.2的方法

解決方法:

在ld.so.conf中加入/usr/local/mysql/lib

[root@yankerp-zabbix ~]# cat /etc/ld.so.conf
include ld.so.conf.d/*.conf
/usr/local/mysql/lib
/usr/local/lib

插入完后執行

Centos7.2編譯安裝zabbix3.2的方法

我們發現還是沒有啟動那么接下來查看zabbix_server的日志如下:

Centos7.2編譯安裝zabbix3.2的方法

上面的提示mysql.sock問題,接下來打開zabbix主配置文件修改如下:

Centos7.2編譯安裝zabbix3.2的方法

添加啟動腳本

[root@yankerp-zabbix zabbix-3.2.1]# cp misc/init.d/fedora/core/zabbix_server /etc/rc.d/init.d/zabbix_server 
[root@yankerp-zabbix zabbix-3.2.1]# cp misc/init.d/fedora/core/zabbix_agentd /etc/rc.d/init.d/zabbix_agentd 
[root@yankerp-zabbix zabbix-3.2.1]# chmod +x /etc/rc.d/init.d/zabbix_server  
[root@yankerp-zabbix zabbix-3.2.1]# chmod +x /etc/rc.d/init.d/zabbix_agentd  
[root@yankerp-zabbix zabbix-3.2.1]# chkconfig --add zabbix_server 
[root@yankerp-zabbix zabbix-3.2.1]# chkconfig --add zabbix_agentd 
[root@yankerp-zabbix zabbix-3.2.1]# chkconfig zabbix_server on 
[root@yankerp-zabbix zabbix-3.2.1]# chkconfig zabbix_agentd on

修改zabbix開機啟動腳本中的zabbix安裝目錄

vi /etc/rc.d/init.d/zabbix_server #編輯服務端配置文件
BASEDIR=/usr/local/zabbix/ #zabbix安裝目錄
PIDFILE=/usr/local/zabbix/logs/$BINARY_NAME.pid  #pid文件路徑
:wq! #保存退出
vi /etc/rc.d/init.d/zabbix_agentd #編輯客戶端配置文件
BASEDIR=/usr/local/zabbix/ #zabbix安裝目錄
PIDFILE=/usr/local/zabbix/logs/$BINARY_NAME.pid #pid文件路徑
:wq! #保存退出

正式啟動zabbix_server

Centos7.2編譯安裝zabbix3.2的方法

啟動成功后配置zabbix的web界面

[root@zabbix-yankerp ~]# cd /root/zabbix-3.2.1/ 
[root@zabbix-yankerp zabbix-3.2.1]# cp -r frontends/php/ /usr/local/nginx/html/zabbix 
[root@zabbix-yankerp zabbix-3.2.1]# chown -R www:www /usr/local/nginx/html/zabbix/

出現以下界面證明 

Centos7.2編譯安裝zabbix3.2的方法

Centos7.2編譯安裝zabbix3.2的方法

Centos7.2編譯安裝zabbix3.2的方法

Centos7.2編譯安裝zabbix3.2的方法

Centos7.2編譯安裝zabbix3.2的方法

Centos7.2編譯安裝zabbix3.2的方法

Centos7.2編譯安裝zabbix3.2的方法

Centos7.2編譯安裝zabbix3.2的方法

出現以上圖片那么證明zabbix正式搭建成功!

關于“Centos7.2編譯安裝zabbix3.2的方法”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

两当县| 濮阳市| 保靖县| 赤峰市| 宣化县| 收藏| 剑河县| 甘孜县| 海安县| 游戏| 铜梁县| 牡丹江市| 阿克陶县| 周口市| 靖边县| 海门市| 嘉鱼县| 八宿县| 南开区| 东乌珠穆沁旗| 织金县| 江阴市| 新建县| 常德市| 福贡县| 裕民县| 革吉县| 万山特区| 昭觉县| 翁源县| 晋江市| 漯河市| 上饶市| 香河县| 丹凤县| 安义县| 林西县| 桂东县| 深州市| 阳山县| 高台县|