Build with docker(使用 Docker 技术构建应用程序或系统镜像)
Overview (概述) 介绍(instruction) 层次结构(Layers) The order of Dockerfile instructions matters. A Docker build consists of a series of ordered build ins…
MySQL数据库排查慢查询、死锁进程及解决方法
一、排查慢查询
1.1检查慢查询日志是否开启
1.1.1使用命令检查是否开启慢查询日志: SHOW VARIABLES LIKE slow_query_log;如果是 Value 为 off 则并未开启
1.1.2开启并且查看慢查询日志:
MySQL提供了慢查询日志功能,可以记录所…