1.登录mysql
# mysql -u root -p然后输入密码
2.使用mysql 数据库
use mysql3.添加一个用户 test 并授权通过本地机(localhost)访问,密码"password"。
grant all privileges on *.* to test@localhost identified by 'password' with grant option4. 刷新刚才的内容*
flush privileges5.查看用户
select host,user from mysql.user建立数据库aCREATE
DATABASE
a
建立用户a_f,并授权a_f可以在192.168.0.1这台机器用123456密码访问数据库a,可以使用的命令有"select,insert,update,delete,create,drop"
grant
select,insert,update,delete,create,drop
on
a.*
to
a_f@192.168.0.1
Identified
by
"123456"
然后刷新授权
FLUSH
PRIVILEGES
以上亲自测试成功!
密码已经生效了;ERROR
1142
(42000):
UPDATE
command
denied
to
user
''@'localhost'
for
table
'user'
这个提示告诉你你是用的空账号登陆的。
update
user
set
password=password('123456')
where
User='root'
密码字段是加密的。
然后你再登陆的时候使用mysql
-uroot
-p然后输入密码,就是你上面的123456
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)