当前位置:Gxlcms > mysql > MySQL添加数据库登录新用户

MySQL添加数据库登录新用户

时间:2021-07-01 10:21:17 帮助过:51人阅读

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

#---下面创建了一个账户为'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>

linux

人气教程排行