Zabbix distributed monitoring - Zabbix monitors Httpd and Nginx
Article directory
1, zabbix monitoring httpd service
2, zabbix monitoring nginx
Font adjustment of web interface
Add a new monitoring item nginx.accept
3, Different types of picture switching
This experiment is based on the previous one, and has monitored server2 and server3
1, zabbix monitor ...
Posted by LuaMadman on Tue, 18 Feb 2020 04:19:53 -0800
zabbix 4.0 theory + operation - 02 (zabbix deployment + email alarm)
zabbix theory + operation-02 (zabbix deployment + email alarm)
Experimental environment
Monitoring end: 192.168.136.168Monitored end: 192.168.136.185
Install LAMP
yum install -y \
httpd \
mariadb-server mariadb \
php \
php-mysql \
php-gd \
libjpeg* \
php-ldap \
php-odbc \
php-pear \
php-xml \
php-xmlrpc \
php-mhash
vim /etc/httpd/conf/httpd. ...
Posted by DeathfireD on Mon, 10 Feb 2020 03:12:52 -0800
Zabbix&LNMP installation configuration
Monitoring terminal operation
#!/bin/bash
#Install zabbix+LNMP
#
lnmp(){
#Turn off firewall & core security features
systemctl stop firewalld.service
systemctl disable firewalld.service &> /dev/null
setenforce 0
sed -i "7cSELINUX=disabled" /etc/sysconfig/selinux
#yum install nginx
wget http://nginx.org/packages/centos/7/noarch/RPM ...
Posted by ccl on Fri, 07 Feb 2020 09:23:31 -0800
Role application of Ansible automatic operation and maintenance playbook (deploying apache and zabbix)
I. Preface
About roles
Roles can be automatically installed in variable files, tasks, handlers, etc. according to the hierarchical structure. To use roles, you only need to use the include instruction in the playbook. In short, roles is a mechanism that can easily include variables, files, tasks, t ...
Posted by qistoph on Sun, 19 Jan 2020 03:24:48 -0800
centos7 mounts the new hard disk and modifies the storage path of mariadb
Environment CentOS7.4
mariadb 5.5
In principle, all mariadb installed from yum can be used
Because the paths of / var/lib/mysql and / etc/my.cnf are the same
The reason for this operation is that zabbix's history problem log has filled the disk, so you can only add a new hard disk and change the mysql storage path
------------------------- ...
Posted by br on Fri, 17 Jan 2020 23:53:23 -0800
zabbix monitoring redis, tomcat, Nginx
This blog post needs to be based on the basic environment of zabbix. Please refer to Build zabbix
1, Configure zabbix to monitor redis
(1) Deploy zabbix agent
Please refer to the blog for details of agent deployment and software package download Configure email alarm and wechat alarm monitored by Zabbix There is no detailed explanation here!
[ ...
Posted by Boerboel649 on Tue, 14 Jan 2020 01:46:45 -0800
ZABBIX 3.4 from entry to mastery
zabbix Foundation
Chapter 1 about zabbix
1.1 why to use monitoring
1. Continuous real-time monitoring of the system2. Real time feedback system current status3. Ensure service reliability and safety4. Ensure the continuous and stable operation of business
1.2 how to monitor
For example, we need to monitor disk utilization1. How to view disk u ...
Posted by PlasmaDragon on Mon, 13 Jan 2020 19:28:10 -0800
Deploy Zabbix monitoring software
Monitoring is very important for operations and maintenance, which can be called the eyes of operations and maintenance personnel.A good monitoring system can help operators quickly find the root cause of the problem, reduce downtime, and improve the speed of troubleshooting.It can be seen from this that, as an operation and maintenance person ...
Posted by neverett on Tue, 07 Jan 2020 16:12:30 -0800
Monitoring with ZABBIX server
I. ZABBIX server installation
Environment: linux 7.3 host ip: 172.25.17.11
1. Prepare the installation package:
Install all:
[root@server11 mnt]# yum install * -y
2. Install the database and open the service to set the database password:
[root@server11 mnt]# yum install mariadb-server -y
[root@server11 mnt]# systemctl ...
Posted by thompsonsco on Sat, 04 Jan 2020 04:38:56 -0800
Using API interface to view, create and delete monitoring host in zabbix monitoring system
What is API:
API (Application Programming Interface) is a pre-defined function, which aims to provide the ability of application program and developers to access a set of routines based on a certain software or hardware without accessing the source code or understanding the details of internal working mechanism. In short, API ...
Posted by richo89 on Fri, 03 Jan 2020 17:28:46 -0800