[Zabbix 4.2 Learning Notes] 8. Data Collection - JMX Agent

JMX Agent is used to monitor the application of java class JMX Agent can realize the standardization and application management of various operating systems, system architecture, network protocols. Server side configuration: JAVA Gateway needs to be started when zabbix server is installed zabbix serve ...

Posted by accu on Mon, 30 Sep 2019 05:59:55 -0700

Windows Performance Monitoring on Zabbix

background information Recent re-reading of some books on windows performance, for a lazy person like me who used SCOM monitoring, the windows OS template on Zabbix is not enough, because the previous SCOM monitoring package (Microsoft has done all the work, I just need to enable rules and alerts as needed). Yes. The default Zabbix performance ...

Posted by kevinsequeira on Tue, 24 Sep 2019 04:11:47 -0700

usermod command, user password management, mkpasswd

Mission 12 June 3.4 usermod command 3.5 User Password Management 3.6 mkpasswd command         3.4 The usermod command: Commands for usermod to change user attributes   Usermod-u 1000 file to change uid Usermod-g 111 file to change gid (with ID or group name) Usermod-d/home/gdsgsdg file to change home directory Usermod-s/sbin/nolog ...

Posted by eelmitchell on Tue, 17 Sep 2019 23:50:27 -0700

Centos 7 minimizes deployment of zabbix

Preface The content of the article is written by the author himself. It has been put in the word document before. Suddenly, the leisure has shifted to the blog. Follow-up viewers are welcome to have questions to discuss with me.~~~ Don't talk too much nonsense. Let's talk about the principle first.   Summary Working principle Collecting d ...

Posted by Hiro on Fri, 02 Aug 2019 04:19:21 -0700

Implementation of Zabbix Monitoring mysql Service

1. Add mysql monitoring items to zabbix-server It is far from enough to find that there are few monitors and trigger graphics in the enterprise. 2. Import your own monitoring template for mysql services Go to the agent directory and view the configuration file [root@server1 ~]# cd /etc/zabbix/zabbix ...

Posted by Poolie on Fri, 02 Aug 2019 03:30:56 -0700

zabbix monitors printers and automatically updates monitoring items

It is a wise saying that there is no monitoring and no maintenance. The strength of zabbix is self-evident here. Today, we teach you how to use it to solve a common need, liberate the hands of operation and maintenance, and inspire your thinking. If you see the end with your heart, you will get something: First, the requirements are briefly in ...

Posted by dragon_sa on Thu, 01 Aug 2019 03:23:30 -0700

Implementation of master-slave monitoring of mysql database by zabbix

1. Establishment of Principal-Subordinate Relations Configure mysql-master side: 1) Modify the configuration file of mysql-master [root@localhost ~]# vim /etc/my.cnf [mysqld] server_id=1 innodb_file_per_table datadir=/data/mysql socket=/var/lib/mysql/mysql.sock log-bin=/data/log-bin/bin binlog_format=row ...... 2) Start the mysql service and ...

Posted by Vettel on Tue, 16 Jul 2019 14:10:00 -0700

zabbix remote command configuration

1. zabbix remote command:1.1 Function:    Restart service;    Restart the server through IPMI interface.    Functions that any custom script can accomplish: cleaning disk space, virtual machine instance migration, etc.1.2 Related attributes:    Tatget list: The target ho ...

Posted by 7khat on Mon, 01 Jul 2019 13:29:35 -0700

Shell programming from beginnings to proficiency - Chapter 2. shell variables

Shell variables2.1. What is a VariableIn elementary school, we learned mathematical equations, such as: what is y equal to when x = 1 and y = x + 1 are known? In the above topics x and y are called unknowns, but in shell programming they are variable names, and 1 on the right of the equal sign and x+1 are variable contents. "=" i ...

Posted by szms on Sat, 22 Jun 2019 16:10:02 -0700

php-fpm services included in zabbix monitoring

I got a Nginx service monitor the other day, and I'll try php service monitor again today.Operating System: CentOS 7.2 PHP Version: 5.6.30zabbix version: 2.2.5We found that php-fpm, like Nginx, has its own status page that can be viewed, so we can open it in the configuration file.First check if your php profile has enabled status page vie ...

Posted by reyes99 on Sun, 16 Jun 2019 15:48:38 -0700