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

MySQL 添加数据库登录新用户

程序员文章站 2022-06-17 15:07:09
...

#---下面创建了一个账户为

#---下面创建了一个账户为'test',密码为'test'的账户
mysql>grant select,insert,delete,update on test.* to test identified by 'test';
Query OK, 0 rows affected (0.00 sec)

#---select,insert,delete,update 指定该用户拥有的权限
#---test.* 指定该用户的这些权限可用于哪些数据库,*代表全部(通配符)
#---to test 指定用户,,如果原来没有这个用户,grant命令创建一个新的用户名
#---indentified …… 设置账户密码

登录测试

[student1@linux115 ~]$ mysql -u test -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 688
Server version: 5.0.56-enterprise-gpl-log Source

Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

mysql>

MySQL 添加数据库登录新用户