2013年10月27日

摘要: Mysql 的密码默认是存储在/data/mysql/下面的三个文件中:user.MYD,user.frm,user.MYI先把这三个文件下载到本地,然后替换本地的这三个文件使用net stop mysql停止mysql服务,然后进入mysql安装目录,使用mysqld.exe--skip-grant-tables启动mysql,这样就可以无密码登录进mysqld server了。接着就可以读取密码了。 阅读全文
posted @ 2013-10-27 14:58 Zombiecc 阅读(305) 评论(0) 推荐(0) 编辑

2013年10月24日

摘要: 1.用root 进入mysql后mysql>set password =password('你的密码');mysql>flush privileges;2.使用GRANT语句 mysql>grant all on *.* to 'root'@'localhost' IDENTIFIED BY '你的密码'with grant option ;mysql>flush privileges;3.进入mysql库修改user表mysql>use mysql;mysql>update user set 阅读全文
posted @ 2013-10-24 11:57 Zombiecc 阅读(151) 评论(0) 推荐(0) 编辑
摘要: 详细内容:MySQL said:#1045 - Access denied for user 'root'@'localhost' (using password: NO)phpMyAdmin tried to connect to the MySQL server, and the server rejected the connection. You should check the host, username and password in your configuration and make sure that they correspond to 阅读全文
posted @ 2013-10-24 11:55 Zombiecc 阅读(385) 评论(0) 推荐(0) 编辑

2013年10月23日

摘要: 问题:解决办法:1.没安装G++ 可使用 sudo apt-get install g++ 进行安装2.gcc版本和g++版本不相符 可利用gcc -v和g++ -v 查看版本 阅读全文
posted @ 2013-10-23 22:26 Zombiecc 阅读(1446) 评论(0) 推荐(0) 编辑

2013年9月10日

摘要: 12个有趣的C语言问答 阅读全文
posted @ 2013-09-10 18:44 Zombiecc 阅读(82) 评论(0) 推荐(0) 编辑

导航