咨询热线:4006-75-4006

售前:9:00-23:30    备案:9:00-18:00    技术:7*24h

MySQL命令行创建用户

2016-03-22 15:47:47 7711次

第一步:mysql -u root -p

第二步:进入根用户use mysql

第三步:创建用户名create user username;(相当于grant select,insert,update,delete on *.* to user1@localhost Identified by "password1";

第四步:给用户赋登录密码update.user set password=password('password1') where user="username"; 也可以在root用户下用此命令修改其他数据库密码

第五步:给用户授予所有的权限grant all privileges on *.* to username@"%" Identified by "password1" with grant option;

123.png


首页
最新活动
个人中心