MySQL database monitoring software lepus usage problems and solutions

MySQL database monitoring software lepus usage problems and solutions

When using lepus3.7 to monitor the MySQL database, I encountered the following problems. This blog gives the causes of these problems and the corresponding solutions.

1. Problem 1: The PHP page cannot connect to the database

Directly using the php program to execute the php file can connect to mysql, but the same php page in httpd cannot connect to mysql.

When the lepus web program (PHP code) cannot connect to the database, no operations can be performed on the web interface.

For this purpose, I wrote the simplest PDO connection test code:

The PHP code is as follows:

[x@coe2coe lepus]$ cat mysql.php
<?php
 try{
 #$dsn="mysql:host=127.0.0.1;dbname=lepus;";
 $dsn="mysql:host=11.1.1.11;dbname=lepus;";
 $user="coe2coe";
 $pwd="XXXXXXXXXX";
 $sql="select now() as a";
 $dbh=new PDO($dsn,$user,$pwd);
 $stmt=$dbh->prepare($sql);
 $stmt->execute();
 $row = $stmt->fetch(PDO::FETCH_ASSOC);
 echo "result:".$row['a'];
 }
 catch(PDOException $e) {
 echo "FAILED:".$e->getMessage();
 }
?>

The php program directly executes the php file:

[x@coe2coe lepus]$ php mysql.php
result:2018-09-27 00:03:44

Visit this page via your browser:

FAILED:SQLSTATE[HY000] [2003] Can't connect to MySQL server on '11.1.1.11' (13)

The error messages given by the lepus web program are even more ambiguous.

reason:

After searching on Baidu, I finally saw a more reliable analysis.

The selinux security mechanism of Linux (CentOS7) prohibits modules in httpd from accessing the network.

[x@coe2coe lepus]$ sudo getsebool -a |grep httpd
httpd_anon_write --> off
httpd_builtin_scripting --> on
httpd_can_check_spam --> off
httpd_can_connect_ftp --> off
httpd_can_connect_ldap --> off
httpd_can_connect_mythtv --> off
httpd_can_connect_zabbix --> off
httpd_can_network_connect --> off
httpd_can_network_connect_cobbler --> off
httpd_can_network_connect_db --> off
httpd_can_network_memcache --> off
httpd_can_network_relay --> off
httpd_can_sendmail --> off
httpd_dbus_avahi --> off
httpd_dbus_sssd --> off
httpd_dontaudit_search_dirs --> off
httpd_enable_cgi --> on
httpd_enable_ftp_server --> off
httpd_enable_homedirs --> off
httpd_execmem --> off
httpd_graceful_shutdown --> on
httpd_manage_ipa --> off
httpd_mod_auth_ntlm_winbind --> off
httpd_mod_auth_pam --> off
httpd_read_user_content --> off
httpd_run_ipa --> off
httpd_run_preupgrade --> off
httpd_run_stickshift --> off
httpd_serve_cobbler_files --> off
httpd_setrlimit --> off
httpd_ssi_exec --> off
httpd_sys_script_anon_write --> off
httpd_tmp_exec --> off
httpd_tty_comm --> off
httpd_unified --> off
httpd_use_cifs --> off
httpd_use_fusefs --> off
httpd_use_gpg --> off
httpd_use_nfs --> off
httpd_use_openstack --> off
httpd_use_sasl --> off
httpd_verify_dns --> off

Solution:

Temporary solution: Temporarily disable SELINUX.

[x@coe2coe lepus]$ sudo setenforce 0

Permanent solution: Modify the selinux configuration file and disable SELINUX.

[x@coe2coe lepus]$ cat /etc/selinux/config
# This file controls the state of SELinux on the system.
# SELINUX= can take one of these three values:
# enforcing - SELinux security policy is enforced.
# permissive - SELinux prints warnings instead of enforcing.
# disabled - No SELinux policy is loaded.
#SELINUX=enforcing
SELINUX=disabled
# SELINUXTYPE= can take one of three two values:
# targeted - Targeted processes are protected,
# minimum - Modification of targeted policy. Only selected processes are protected. 
# mls - Multi Level Security protection.
SELINUXTYPE=targeted

verify:

Access this PHP page in the browser again:

result:2018-09-27 00:09:26

2. Question 2: A group by warning appears in the lepus log.

2018-09-27 01:12:41 [WARNING] check mysql 11.1.1.11:3408 failure: 1055 Expression #2 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'information_schema.processlist.USER' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by

reason:

This is the log written by the lepus backend monitoring program.

By default sql_mode contains ONLY_FULL_GROUP_BY.

mysql> select @@sql_mode;
+-------------------------------------------------------------------------------------------------------------------------------------------+
| @@sql_mode |
+-------------------------------------------------------------------------------------------------------------------------------------------+
| ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION |
+-------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.01 sec)

Solution:

Remove ONLY_FULL_GROUP_BY.

sql_mode=STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION

3. Question 3: No data can be queried in the replication monitoring.

No data found.

Solution:

show_compatibility_56=1

4. Question 4: There is no data in the table space analysis.

5. Question 5: Slow query has no data.

premise:

The slow query log has been configured in the MySQL my.cnf configuration file.

slow_query_log=1

long_query_time=10

log_slow_admin_statements=1

log_slow_slave_statements=1

reason:

1.lepus slow query analysis is based on the pt-query-digest program in the pecona-toolkit toolkit. You need to install this toolkit first.

2. The pt-query-digest program conflicts with the table created by lepus3.7.

Pipeline process 5 (iteration) caused an error: DBD::mysql::st execute failed: Data truncated for column 'checksum' at row 1 [for Statement "REPLACE INTO `lepus`.`mysql_slow_query_review_history`(`checksum`, `sample`, `serverid_max`, `db_max`, `user_max`, `ts_min`,
.....
Terminating pipeline because process 4 (iteration) caused too many errors.

Modify mysql_slow_query_review:

mysql> alter table mysql_slow_query_review modify checksum varchar(100) not null;
Query OK, 0 rows affected (0.03 sec)
Records: 0 Duplicates: 0 Warnings: 0
Modify mysql_slow_query_review_history:
mysql> alter table mysql_slow_query_review_history modify checksum varchar(100) not null;
Query OK, 0 rows affected (0.02 sec)
Records: 0 Duplicates: 0 Warnings: 0
mysql> alter table mysql_slow_query_review_history modify serverid_max smallint(4) null;
Query OK, 0 rows affected (0.02 sec)
Records: 0 Duplicates: 0 Warnings: 0

Modify the script:

There are some issues with the original lepus_slowquery.sh file.

(1) lepus_server_id needs to be manually specified. This script needs to be deployed on each MySQL server, so it is easy to make mistakes if there are many MySQL servers to monitor.

The parameter lepus_server_id is very important. The following code can automatically obtain this id.

id=$( $mysql_client -h$lepus_db_host -P$lepus_db_port -u$lepus_db_user -p$lepus_db_password -e "select id,host,port from $lepus_db_database.db_servers_mysql where host='$mysql_host' and port=$mysql_port\G" 2>/dev/null |grep "id:" |awk -F": " '{print $2}')

(2) If multiple MySQL service instances are deployed on the same machine, only one scheduled task should be required to check multiple MySQL service instances on the local machine at the same time in another script.

The overall timing script is as follows. During the test, six MySQL instances were opened, and the ports are: 3306 3307 3308 3406 3407 3408. Among them, 3306 and 3406 are MASTER, and the others are SLAVE. In this overall script, lepus_slowquery.sh is called for each instance.

[x@coe2coe mysql]$ cat slowquery.sh
##################################################################
# FileName :slowquery.sh
# Author : [email protected]
# Created :2018-09-27
# Description :http://www.cnblogs.com/coe2coe/
#################################################################
#!/bin/bash
ports=(3306 3307 3308 3406 3407 3408)
i=0
while [ $i -lt ${#ports[*]} ]
do
 port=${ports[$i]}
 echo -e "/lepus_slowquery.sh $port"
 ./lepus_slowquery.sh $port 
 let i=i+1
done

(3) The original lepus_slowquery.sh will modify the global configuration parameters of MySQL. I personally think that it does not need to be modified. The two configurations should still be based on the configuration in the my.cnf file of the MySQL server. This parameter should not be modified arbitrarily just because a lepus monitoring system is deployed. Therefore, the last few lines of code are commented out directly.

long_query_time
slow_query_log_file

The modified complete lepus_slowquery.sh file is as follows:

[x@coe2coe mysql]$ cat lepus_slowquery.sh
#!/bin/bash
#********************************************************************#
# ScriptName: /usr/local/sbin/lepus_slowquery.sh
# Create Date: 2014-03-25 10:01
# Modify Date: 2014-03-25 10:01
#*******************************************************************#
port=$1
id=$2
if [ "$port" == "" ] || [ $port -lt 1 ] 
then
 echo -e "invalid argument port"
 exit 1
fi
echo -e "mysql port is :{$port} "
#config lepus database server
lepus_db_host="11.1.1.11"
lepus_db_port=3306
lepus_db_user="lepus_monitor"
lepus_db_password="XXXXXXXXXX"
lepus_db_database="lepus"
#config mysql server
mysql_client="/usr/bin/mysql"
mysql_host="11.1.1.11"
mysql_port=$port
mysql_user="lepus_monitor"
mysql_password="XXXXXXXXXX"
id=$( $mysql_client -h$lepus_db_host -P$lepus_db_port -u$lepus_db_user -p$lepus_db_password -e "select id,host,port from $lepus_db_database.db_servers_mysql where host='$mysql_host' and port=$mysql_port\G" 2>/dev/null |grep "id:" |awk -F": " '{print $2}')
if [ "$id" == "" ] || [ $id -lt 1 ]
then
 echo -e "invalid argument id"
 exit 2
fi
echo -e "mysql lepus id is :{$id}"
#config slowqury
slowquery_dir="/tmp/"
slowquery_long_time=1
slowquery_file=`$mysql_client -h$mysql_host -P$mysql_port -u$mysql_user -p$mysql_password -e "show variables like 'slow_query_log_file'" 2>/dev/null |grep log|awk '{print $2}'`
pt_query_digest="/usr/bin/pt-query-digest"
#config server_id
lepus_server_id=$id
#collect mysql slowquery log into lepus database
$pt_query_digest --user=$lepus_db_user --password=$lepus_db_password --port=$lepus_db_port --review h=$lepus_db_host,D=$lepus_db_database,t=mysql_slow_query_review --history h=$lepus_db_host,D=$lepus_db_database,t=mysql_slow_query_review_history --no-report --limit=100% --filter=" \$event->{add_column} = length(\$event->{arg}) and \$event->{serverid}=$lepus_server_id " $slowquery_file > /tmp/lepus_slowquery.log
##### set a new slow query log ###########
#tmp_log=`$mysql_client -h$mysql_host -P$mysql_port -u$mysql_user -p$mysql_password -e "select concat('$slowquery_dir','slowquery_', '$port','_', date_format(now(),'%Y%m%d%H'),'.log');" 2>/dev/null |grep log|sed -n -e '2p'`
#config mysql slowquery
#$mysql_client -h$mysql_host -P$mysql_port -u$mysql_user -p$mysql_password -e "set global slow_query_log=1;set global long_query_time=$slowquery_long_time;" 2>/dev/null
#$mysql_client -h$mysql_host -P$mysql_port -u$mysql_user -p$mysql_password -e "set global slow_query_log_file = '$tmp_log'; "
#delete log before 7 days
#cd $slowquery_dir
#/usr/bin/find ./ -name 'slowquery_*' -mtime +7|xargs rm -rf ;
####END####

6. Question 6: Web slow query cannot find data in lepus

Slow queries are recorded in the mysql_slow_query_review table, but there is no data on the lepus web interface.

Execute: select sleep(14) Sometimes it cannot be queried on the web interface.

Cause: Sometimes db_max in the result generated by pt-query-digest is NULL, resulting in a query failure.

The original database for this field is NOT NULL, but in the NOT NULL case, pt-query-digest sometimes inserts NULL data, causing an error. So it was changed to NULL.

After changing it to NULL, there is a problem with the SQL statement of the PHP program used for querying in the web interface. It does not take the NULL situation into consideration, resulting in the failure to query this part of the data.

Solution:

Temporarily open the global parameter general_log, and then query the slow log of the web, you can quickly find the SQL statement, and then find the problematic PHP code based on this SQL statement.

Comment out the following statements in application/controllers/lp_mysql.php.

Before modification:

$this->db->where( "b.db_max !=", 'information_schema'");

After modification:

//$this->db->where( "b.db_max !=", 'information_schema'");

7. Question 7: There is no data in the three items in host monitoring.

Cause: snmpd and snmptrapd are not installed on the monitoring host and the monitored host.

Solution:

Install snmpd and snmptrapd on all hosts.

Software Packages:

x@coe2coe snmp]$ ls net-snmp*

net-snmp-5.7.2-32.el7.x86_64.rpm

net-snmp-agent-libs-5.7.2-32.el7.x86_64.rpm

net-snmp-devel-5.7.2-32.el7.x86_64.rpm

net-snmp-libs-5.7.2-32.el7.x86_64.rpm

net-snmp-perl-5.7.2-32.el7.x86_64.rpm

net-snmp-python-5.7.2-32.el7.x86_64.rpm

net-snmp-sysvinit-5.7.2-32.el7.x86_64.rpm

net-snmp-utils-5.7.2-32.el7.x86_64.rpm

These packages are available on CentOS7-everything-xxx.iso.

After the installation is complete, start the snmpd and snmptrapd services.

Summarize

The above is the usage problems and solutions of the MySQL database monitoring software lepus introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!

You may also be interested in:
  • Detailed explanation of MySQL monitoring tool mysql-monitor
  • Detailed explanation of non-primary key column overflow monitoring in MySQL tables
  • Use Grafana+Prometheus to monitor MySQL service performance
  • Detailed tutorial on how to monitor Nginx/Tomcat/MySQL using Zabbix
  • MySQL index usage monitoring skills (worth collecting!)
  • Detailed explanation of how to monitor MySQL statements
  • Detailed explanation of how Zabbix monitors the master-slave status of MySQL
  • Detailed explanation of performance monitoring of MySQL server using Prometheus and Grafana
  • Introduction to the use of MySQL real-time monitoring tool orztop
  • Summary of the actual simulation monitoring MySQL service shell script
  • Basic tutorial on installing and configuring Zabbix to monitor MySQL
  • Briefly describe mysql monitoring group replication

<<:  Detailed explanation of the use of Teleport in Vue3

>>:  What to do if the container started by docker run hangs and loses data

Recommend

How to load the camera in HTML

Effect diagram: Overall effect: Video loading: Ph...

Tomcat server security settings method

Tomcat is an HTTP server that is the official ref...

Detailed explanation of MySQL database transaction isolation levels

Database transaction isolation level There are 4 ...

Application of Hadoop counters and data cleaning

Data cleaning (ETL) Before running the core busin...

Implementation of importing and exporting docker images

Docker usage of gitlab gitlab docker Startup Comm...

JS implements click drop effect

js realizes the special effect of clicking and dr...

Implementation of JavaScript downloading linked images and uploading them

Since we are going to upload pictures, the first ...

Linux installation MySQL tutorial (binary distribution)

This tutorial shares the detailed steps of instal...

Practical way to build selenium grid distributed environment with docker

Recently, I needed to test the zoom video confere...