Linux——zabbix
2021/9/27 7:14:09
本文主要是介绍Linux——zabbix,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
目录
- zabbix介绍
- zabbix特点
- zabbix配置
- 部署zabbix
- zabbix服务端安装
- zabbix服务端配置
- zabbix服务端web界面安装
- 安装zabbix web界面
zabbix介绍
zabbix是一个基于WEB界面的提供分布式系统监视以及网络监视功能的企业级的开源解决方案。
zabbix能监视各种网络参数,保证服务器系统的安全运营;并提供灵活的通知机制以让系统管理员快速定位/解决存在的各种问题。
zabbix由2部分构成,zabbix server与可选组件zabbix agent。
zabbix server可以通过SNMP,zabbix agent,ping,端口监视等方法提供对远程服务器/网络状态的监视,数据收集等功能,它可以运行在Linux,Ubuntu,Solaris,HP-UX,AIX,Free BSD,Open BSD,OS X等平台上。
zabbix agent需要安装在被监视的目标服务器上,它主要完成对硬件信息或与操作系统有关的内存,CPU等信息的收集。
zabbix server可以单独监视远程服务器的服务状态;同时也可以与zabbix agent配合,可以轮询zabbix agent主动接收监视数据(agent方式),同时还可被动接收zabbix agent发送的数据(trapping方式)。
另外zabbix server还支持SNMP (v1,v2),可以与SNMP软件(例如:net-snmp)等配合使用。
zabbix特点
- 安装与配置简单,学习成本低
- 支持多语言(包括中文)
- 免费开源
- 自动发现服务器与网络设备
- 分布式监视以及WEB集中管理功能
- 可以无agent监视
- 用户安全认证和柔软的授权方式
- 通过WEB界面设置或查看监视结果
- email等通知功能
Zabbix主要功能:
- CPU负荷
- 内存使用
- 磁盘使用
- 网络状况
- 端口监视
- 日志监视
zabbix配置
zabbix配置文件有两种:
- 服务器端配置文件(/usr/local/etc/zabbix_server.conf)
- 客户端配置文件(/usr/local/etc/zabbix_agentd.conf)
- zabbix代理配置文件(/usr/local/etc/zabbix_proxy.conf)
部署zabbix
环境 | IP | 安装应用 |
---|---|---|
服务器 | 192.168.8.130 | lamp架构 zabbix servers zabbix agent |
客户端 | 192.168.8.131 | zabbix agent |
部署zabbix 需要部署lamp架构(见lamp架构篇)
# 安装zabbix需要使用php7.4版本 [root@server ~]# tar xf php-7.4.24.tar.xz -C /usr/src/ [root@server php-7.4.24]# ./configure --prefix=/usr/localphp \--with-config-file-path=/etc --enable-fpm --enable-inline-optimization --disable-debug --disable-rpath --enable-shared --enable-soap --with-openssl --enable-bcmath --with-iconv --with-bz2 --enable-calendar --with-curl --enable-exif --enable-ftp --enable-gd --with-jpeg --with-zlib-dir --with-freetype --with-gettext --enable-json --enable-mbstring --enable-pdo --with-mysqli=mysqlnd --with-pdo-mysql=mysqlnd --with-readline --enable-shmop --enable-simplexml --enable-sockets --with-zip --enable-mysqlnd-compression-support --with-pear --enable-pcntl --enable-posix [root@server php-7.4.24]# make && make install ······ # 设置环境变量 [root@server php-7.4.24]# cp /etc/php.ini /opt/ [root@server php-7.4.24]# cp php.ini-production /etc/php.ini cp:是否覆盖'/etc/php.ini'? y [root@server php-7.4.24]# cp sapi/fpm/init.d.php-fpm /etc/init.d/php-fpm [root@server php-7.4.24]# chmod +x /etc/rc.d/init.d/php-fpm [root@server php-7.4.24]# cp /usr/local/php/etc/php-fpm.conf.default /usr/local/php/etc/php-fpm.conf [root@server php-7.4.24]# cp /usr/local/php/etc/php-fpm.d/www.conf.default /usr/local/php/etc/php-fpm.d/www.conf [root@server php-7.4.24]# [root@server ~]# service php-fpm start Starting php-fpm done [root@server ~]# service php-fpm stop # 设置开机自启 [root@server ~]# cat /usr/lib/systemd//system/php-fpm.service [Unit] Description=php-fpm server daemon After=network.targe [Service] Type=forking ExecStart=/etc/init.d/php-fpm start ExecStop=/etc/init.d/php-fpm stop [Install] WantedBy=multi-user.target [root@server ~]# systemctl daemon-reload [root@server ~]# systemctl enable --now php-fpm [root@server ~]# ss -antl State Recv-Q Send-Q Local Address:Port Peer Address:Port LISTEN 0 128 127.0.0.1:6011 0.0.0.0:* LISTEN 0 128 127.0.0.1:9000 0.0.0.0:*
zabbix服务端安装
# 安装依赖软件 [root@server ~]# yum -y install net-snmp-devel libevent-devel #下载zabbix https://www.zabbix.com/download_sources # 解压软件包 [root@server ~]# tar xf zabbix-5.4.4.tar.gz -C /usr/src/ # 创建zabbix用户 [root@server ~]# useradd -r -M -s /sbin/nologin zabbix # 配置abbix数据库 [root@server ~]# mysql -uroot -p123 mysql: [Warning] Using a password on the command line interface can be insecure. Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 2 Server version: 5.7.34 MySQL Community Server (GPL) Copyright (c) 2000, 2021, Oracle and/or its affiliates. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql> mysql> create database zabbix character set utf8 collate utf8_bin; Query OK, 1 row affected (0.08 sec) mysql> grant all privileges on zabbix.* to zabbix@localhost identified by '123'; Query OK, 0 rows affected, 2 warnings (0.03 sec) mysql> flush privileges; Query OK, 0 rows affected (0.03 sec) [root@server ~]# cd /usr/src/zabbix-4.0.3/database/mysql/ [root@client mysql]# ls data.sql double.sql images.sql Makefile.am Makefile.in schema.sql [root@client mysql]# mysql -uroot -p123 zabbix < schema.sql mysql: [Warning] Using a password on the command line interface can be insecure. [root@client mysql]# mysql -uroot -p123 zabbix < images.sql mysql: [Warning] Using a password on the command line interface can be insecure. [root@client mysql]# mysql -uroot -p123 zabbix < data.sql mysql: [Warning] Using a password on the command line interface can be insecure. # 编译安装zabbix [root@server zabbix-5.4.4]# ./configure --enable-server \ --enable-agent \ --with-mysql \ --with-net-snmp \ --with-libcurl \ --with-libxml2 [root@server zabbix-5.4.4]# make install ······
zabbix服务端配置
[root@server zabbix-5.4.4]# ls /usr/local/etc/ zabbix_agentd.conf zabbix_agentd.conf.d zabbix_server.conf zabbix_server.conf.d [root@server zabbix-5.4.4]# vim /usr/local/etc/zabbix_server.conf .... DBPassword=123 # 设置zabbix数据库密码 [root@server ~]# mkdir /var/lib/mysql [root@server ~]# ln -s /tmp/mysql.sock /var/lib/mysql/ # 启动服务 [root@server ~]# zabbix_server [root@server ~]# zabbix_agentd [root@server ~]# [root@server ~]# ss -antl State Recv-Q Send-Q Local Address:Port Peer Address:Port LISTEN 0 128 0.0.0.0:10050 0.0.0.0:* LISTEN 0 128 0.0.0.0:10051 0.0.0.0:*
zabbix服务端web界面安装
[root@server htdocs]# mkdir zabbix [root@server htdocs]# chown -R apache.apache /usr/local/httpd/htdocs [root@server zabbix-5.4.4]# cp -r ui/* /usr/local/httpd/htdocs/zabbix/ [root@server zabbix-5.4.4]# # 配置http文件 [root@client httpd]# vim conf/httpd.conf <VirtualHost *:80> DocumentRoot "/usr/local/httpd/htdocs/zabbix" ServerName www.test.com ProxyRequests Off ProxyPassMatch ^/(.*\.php)$ fcgi://127.0.0.1:9000/usr/local/httpd/htdocs/zabbix/$1 <Directory "/usr/local/httpd/htdocs/zabbix"> Options none AllowOverride none Require all granted </Directory> </VirtualHost> [root@client httpd]# systemctl restart httpd # 修改/etc/php.ini的配置并重启php-fpm [root@client ~]# sed -ri 's/(post_max_size =).*/\1 16M/g' /etc/php.ini [root@client ~]# sed -ri 's/(max_execution_time =).*/\1 300/g' /etc/php.ini [root@client ~]# sed -ri 's/(max_input_time =).*/\1 300/g' /etc/php.ini [root@client ~]# sed -i '/;date.timezone/a date.timezone = Asia/Shanghai' /etc/php.ini [root@client ~]# systemctl restart php-fpm
安装zabbix web界面
修改文件权限
[root@client ~]# chown -R apache.apache /usr/local/httpd/htdocs/zabbix [root@client ~]# chmod 777 /usr/local/httpd/htdocs/zabbix/conf [root@client ~]# ll -d /usr/local/httpd/htdocs/zabbix/conf drwxrwxrwx. 3 apache apache 94 9月 26 16:32 /usr/local/httpd/htdocs/zabbix/conf
zabbix默认登陆用户名:Admin,密码:zabbix
恢复zabbix/conf目录的权限为755:
[root@client ~]# chmod 755 /usr/local/httpd/htdocs/zabbix/conf [root@client ~]# ll -d /usr/local/httpd/htdocs/zabbix/conf drwxr-xr-x. 3 apache apache 117 9月 26 16:49 /usr/local/httpd/htdocs/zabbix/conf
这篇关于Linux——zabbix的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-18git仓库有更新,jenkins 自动触发拉代码怎么配置的?-icode9专业技术文章分享
- 2024-12-18Jenkins webhook 方式怎么配置指定的分支?-icode9专业技术文章分享
- 2024-12-13Linux C++项目实战入门教程
- 2024-12-13Linux C++编程项目实战入门教程
- 2024-12-11Linux部署Scrapy教程:新手入门指南
- 2024-12-11怎么将在本地创建的 Maven 仓库迁移到 Linux 服务器上?-icode9专业技术文章分享
- 2024-12-10Linux常用命令
- 2024-12-06谁看谁服! Linux 创始人对于进程和线程的理解是…
- 2024-12-04操作系统教程:新手入门及初级技巧详解
- 2024-12-04操作系统入门:新手必学指南