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; #刷新权限表,使配置生效