Home > Database > Mysql Tutorial > How to enable slow query log in docker mysql container

How to enable slow query log in docker mysql container

PHPz
Release: 2023-05-30 12:54:08
forward
1896 people have browsed it

1. Enter the container login account

docker to view the running container

docker ps
Copy after login

How to enable slow query log in docker mysql container

##Enter the container:

docker exec -it dc8880c13fef /bin/bash
Copy after login

Enter the username and password Log in to mysql

mysql -u root -p
Copy after login

How to enable slow query log in docker mysql container

and then enter the password to log in

How to enable slow query log in docker mysql container

2. View slow log related information

The slow log is turned off by default.


show variables like ‘slow%’; (or use, see other bloggers say there will be version differences, then use double percent signs: show variables like ‘%slow %’;)

How to enable slow query log in docker mysql container

Turn on the slow log switch

set global slow_query_log = ON;
Copy after login

How to enable slow query log in docker mysql container

was successfully turned on.

You can modify the threshold for judging whether it is slow SQL. When the SQL execution exceeds the threshold, it will be recorded in the slow log log file.

How to enable slow query log in docker mysql container

After modification, test select query.

How to enable slow query log in docker mysql container

Here we can see that the sql is recorded in the slow log.

The above is the detailed content of How to enable slow query log in docker mysql container. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:yisu.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template