【汇总】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常用操作【grant,show】 博客分类: mysql mysql
-
【汇总】mysql常用操作【grant,show】 博客分类: mysql mysql
-
SQL SERVER系统表和常用函数介绍 博客分类: mysql/oracle/sqlserver/db2/mongdb/redis/neo4j/GreenPlum/Teradata/hsqldb/Derby/sakila
-
MyBatis常用几种写法 博客分类: 数据库mysql
-
mysql8 安装 恢复常用知识 博客分类: mysql mysql8 命令行 安装 新用户 授权
-
mysql8 安装 恢复常用知识 博客分类: mysql mysql8 命令行 安装 新用户 授权
-
MySQL常用SQL及命令 博客分类: 数据库 mysqlsql命令
-
MySQL常用SQL及命令 博客分类: 数据库 mysqlsql命令
-
Mysql常用函数 博客分类: Mysql
-
局域网内连接MySQL 博客分类: MySQL MySQL局域网连接grant