一.修改mysql权限 1.mysql -u root -p 回车输入密码 2.use mysql: 打开数据库 3.将host设置为%表示任何ip都能连接mysql,当然您也可以将host指定为某个ip: update user set host=’%’ where user=’root’ and host=’localhost’; 4.刷新权限表 flush privileges: 或者 添加一个新用户 用户名Tom,密码123456 grant all on *.* to 'T…
命令行登入mysql show variables like '%timeout%':(其中有用的是: interactive_timeout 和wait_timeout 为28800,默认为8小时设置:) set interactive_timeout=764000; set wait_timeout=764000; (设置为10天) 执行show variables like '%timeout%':看看执行成功没有…
mysql -u root -p 修改mysql库的user表,将host项,从localhost改为%.%这里表示的是允许任意host访问,如果只允许某一个ip访问,则可改为相应的ip mysql> use mysql; mysql> update user set host = '%' where user = 'root'; mysql> select host, user from user; mysql> flush privileges; 重启mysql服务 /etc/…