欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

【汇总】mysql常用操作【grant,show】 博客分类: mysql mysql 

程序员文章站 2024-03-23 15:29:04
...

1.创建拥有全部权限的账户

mysql>grant all privileges on *.* to 用户名@'localhost' identified by '密码';
mysql>flush privileges;

推荐查看详细说明的链接:

http://www.cnblogs.com/hcbin/archive/2010/04/23/1718379.html

 

 

2.最大连接数,响应的最大连接数

(比较理想的设置:Max_used_connections / max_connections * 100% ≈ 85%)

// 最大连接数
mysql> show variables like 'max_connections';
+-----------------+-------+
| Variable_name   | Value |
+-----------------+-------+
| max_connections | 151   |
+-----------------+-------+
1 row in set (0.00 sec)

// 响应的最大连接数 
mysql> show global status like 'Max_used_connections';
+----------------------+-------+
| Variable_name        | Value |
+----------------------+-------+
| Max_used_connections | 152   |
+----------------------+-------+
1 row in set (0.00 sec)
  

 

....

相关标签: mysql