2021年8月25日
摘要: 一、docker安装 1、查看可用的 MySQL 版本 访问 MySQL 镜像库地址:https://hub.docker.com/_/mysql?tab=tags 。 2、拉取 MySQL 镜像 这里我们拉取官方的最新版本的镜像: $ docker pull mysql:8.0.26 3、查看本地 阅读全文
posted @ 2021-08-25 15:39 java先生 阅读(1085) 评论(0) 推荐(0)
摘要: show variables like '%max_connection%'; 查看最大连接数 set global max_connections=1000; 重新设置最大连接数 mysql> show status like 'Threads%'; + + + | Variable_name | 阅读全文
posted @ 2021-08-25 14:12 java先生 阅读(865) 评论(0) 推荐(0)