MySQL 添加数据库登录新用户
#---下面创建了一个账户为'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>
相关推荐
敏敏张 2020-11-11
SCNUHB 2020-11-10
小木兮子 2020-11-11
wwwsurfphpseocom 2020-10-28
WasteLand 2020-10-18
Cocolada 2020-11-12
杜鲁门 2020-11-05
shirleypaddy 2020-10-19
qingmumu 2020-10-19
Testingba工作室 2020-09-15
周公周金桥 2020-09-13
专注前端开发 2020-08-16
emagtestage 2020-08-16
heniancheng 2020-08-15
hanjinixng00 2020-08-12
小方哥哥 2020-08-09
83327712 2020-07-30
卖小孩的咖啡 2020-07-21
wqiaofujiang 2020-07-05