Docker deploys zabbix6.0+agent

1. Install Docker Available offline for reference Offline installation of docker and docker-compose-CSDN blog Deploy docker’s yum source vi /etc/yum.repos.d/docker-ce.repo [docker-ce-stable] name=Docker CE Stable – $basearch baseurl=https://download.docker.com/linux/centos/$releasever/$basearch/stable enabled=1 gpgcheck=1 gpgkey=https://download.docker.com/linux/centos/gpg [docker-ce-stable-debuginfo] name=Docker CE Stable – Debuginfo $basearch baseurl=https://download.docker.com/linux/centos/$releasever/debug-$basearch/stable enabled=0 gpgcheck=1 gpgkey=https://download.docker.com/linux/centos/gpg [docker-ce-stable-source] name=Docker CE Stable – Sources baseurl=https://download.docker.com/linux/centos/$releasever/source/stable enabled=0 gpgcheck=1 gpgkey=https://download.docker.com/linux/centos/gpg [docker-ce-test] name=Docker CE Test-$basearch […]

zabbix monitoring installation-linux

zabbix6.4 Chinese documentation 1. Introduction (zabbix.com) Zabbix is an enterprise-grade open source distributed monitoring solution. 1.zabbix structure system Server: The server is the central repository for all configuration, statistics, and operational data. Proxy: Zabbix proxy can collect performance and availability data on behalf of Zabbix server. Proxies are an optional part of a Zabbix deployment; […]

Ansible automated installation of zabbix

Ansible automated installation of zabbix Introduction Ansible introduction Ansible is an open source IT configuration management tool developed in Python language. It is often used by friends in the IT industry for service deployment, configuration management and other tasks. The configuration file uses the most common yaml format, which is relatively easy to learn. Unlike […]

Zabbix installation and deployment

Foreword Zabbix is an open source network monitoring and system monitoring solution for monitoring servers, network devices, applications and services. It is based on client-server architecture and uses multiple monitoring options to monitor different types of devices and applications. Zabbix supports data collection, processing and storage, as well as alarming and visualization functions. It has […]

Zabbix monitors nginx status page

zabbix monitors nginx status page Directory Zabbix monitors nginx status page 1.Environmental description 2. Press and hold zabbix_agent on nginx 3. Open the nginx status display page 4.zabbix web interface configuration 4.1 Create monitoring host 4.2 Create monitoring projects 4.3 Add trigger 4.4 Testing 1. Environment description Host name ip Host service zabbix 192.168.200.42 zabbix_server […]

Zabbix monitoring keepalived split brain

Zabbix monitoring keepalived split brain 1. Introduction to split-brain In a high availability (HA) system, when the “heartbeat line” connecting two nodes is disconnected, the HA system, which was originally a whole and coordinated actions, split into two independent entities. Since they lost contact with each other, they both thought that the other party had […]

Centos 7 Zabbix configuration and installation

Foreword Zabbix is an open source network monitoring and management software that is highly scalable and flexible. It can monitor various network devices, servers, virtual machines and applications, collect and analyze performance indicators, and send alerts and reports. Zabbix has the following features: 1. Supports multiple monitoring methods: devices can be monitored using active and […]

Sangfor firewall’s high-risk attack IPs are automatically blocked through Zabbix

zabbix server configuration syslog service Modify configuration vi /etc/rsyslog.conf # Provides UDP syslog reception $ModLoad imudp $UDPServerRun 514 # Provides TCP syslog reception $ModLoad imtcp $InputTCPServerRun 514 #### GLOBAL DIRECTIVES #### # Where to place auxiliary files $WorkDirectory /var/lib/rsyslog # Use default timestamp format $ActionFileDefaultTemplate RSYSLOG_TraditionalFileFormat ## Here is the configuration added by the server […]

Hand in hand zabbix5.0 monitors redis7

Centos7 installation and configuration Redis7 Install redis #Install gcc yum -y install gcc gcc-c++ #Install net-tools yum -y install net-tools #Official website https://redis.io/ cd /opt/ wget http://download.redis.io/releases/redis-7.0.4.tar.gz Unzip it to the /opt/ directory tar -zxvf redis-7.0.4.tar.gz -C /opt/ #Compile and install make make install INSTALL redis-server INSTALL redis-benchmark INSTALL redis-cli //Start redis redis-server or nohup […]

Zabbix monitors nginx status page

zabbix monitors nginx status page Article directory Zabbix monitors nginx status page 1.Environmental description 2. Knowledge points involved 3. Install zabbix_agent on the nginx host 4. Open the nginx status display page 5. Enter the zabbix web page to configure the host, monitoring items, and triggers 5.1.Add host 5.2. Create monitoring items 5.3.Create triggers 1. […]