MySQL的一些常用命令

mysql -u root -h localhost -p #登录

use mysql; #打开mysql数据库

select host,user from user where user='root'; #查看user表里的root数据

update user set host='%' where user='root' and host='localhost'; #将host设置为%表示任何ip都能连接mysql,也可以将host指定为某个ip

update user set host='localhost' where user='root’; #关闭远程连接,重新设置为localhost

GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' WITH GRANT OPTION; #给root进行授权

flush privileges;  #刷新权限表,使配置生效

 

posted @ 2018-11-14 15:57  CoderWayne  阅读(220)  评论(0编辑  收藏  举报