查看存储引擎:show variables like ‘%storage_engine%‘;
查看log-bin日志是否打开:show variables like ‘%log_bin%‘;
查看字符集:show variables like ‘%set%‘;
查询全局变量:show global variables \G;
查询会话变量:show session variables \G;或show variables;
1、查看最大连接数
show variables like ‘%max_connections%‘;
2、修改最大连接数
set GLOBAL max_connections = 200;
查看全局变量
show global variables like ‘%connect%‘;
查看用户变量
show variables like ‘%log%’;
重启服务
1、service mysqld start;
service mysqld stop;
service mysqld restart;
2、 /etc/init.d/mysqld start;
/etc/init.d/mysqld stop;
/etc/init.d/mysqld restart;
相关文章
- 10-14MSF常用命令
- 10-14git常用命令,学git代码管理
- 10-14git常用命令学习笔记
- 10-14Python30-05_[补充]操作系统----常用命令-日期/时间指令
- 10-14一些常用命令
- 10-14Git 常用命令和统计代码量
- 10-14Adb常用命令
- 10-14Docker的常用命令
- 10-14git 常用命令
- 10-14WinDbg常用命令系列---清屏