mysql
-仅此而已
有时你的bug ,只是因为大小写
展开
-
Host 'ip地址' is not allowed to connect to this MySQL server报错解决方法
192.168.1.xxxis not allowed to connect to this mysql server意思是这个host主机不能访问本机的mysql服务,需要连接非本机的mysql的时候,默认host是localhost,我们需要将这个mysql连接权限设置成%更改方法:在mysql的数据库选择mysql这个数据库,里面有一个user表,进入表中有一个host字段...原创 2020-01-11 13:17:00 · 9224 阅读 · 0 评论 -
允许sql远程访问
GRANTALLPRIVILEGESON*.*TO'root'@'%'IDENTIFIEDBY'asdfasf'WITHGRANTOPTION;flushprivileges;原创 2019-12-27 14:04:14 · 191 阅读 · 0 评论 -
修改sql数据库密码
mysql 下 user表update user set authentication_string=password("root") where user="root";flush privileges;依次执行 即可修改原创 2019-12-23 14:43:53 · 2358 阅读 · 0 评论