标签:bsp 访问 nbsp 忘记 数据 word 执行 res ...
今天在调试MySQL出现了一些坑。需要记录一下。
# These are commonly set, remove the # and set as required. basedir =E:\MySQL\mysql-5.7.16-winx64\mysql-5.7.16-winx64 datadir =E:\MySQL\mysql-5.7.16-winx64\mysql-5.7.16-winx64\data #bind-address=127.0.0.1 port =3306 #skip-grant-tables #server_id =....
上面一句 skip-grant-tables这句话就是你在无法知道root密码的时候进行非授权进去修改密码的。
但是我无论怎么做:
update user set password=password(‘123456‘) where user=‘root‘;
确发现我始终是不能更改这个密码总是会提示我什么什么root@localhost无法访问之内的,最后找到一个方法处理具体是哪位的博客忘记记录了
直接修改授权的密码
然后能登陆了,但是你发现你创建库的时候或者表的时候,还是会出现错误。
这时候你需要再次执行
这就ok了
创建库
创建表
查询
查询所有的数据库
终于找到喜欢命令行的理由了。
标签:bsp 访问 nbsp 忘记 数据 word 执行 res ...
原文地址:http://www.cnblogs.com/leizhizhiyuyali/p/6057292.html