- 论坛徽章:
- 0
|
俺是个mysql新手,今天碰到一朋友的服务器出问题了,刚刚解决了,给大家分享一下!
系统环境:
windows server 2003
IIS+PHP+mysql
故障前因:
不小心把一些数据表全部删除了!而致使无法正常登陆mysql (具体怎么删除的不清楚)。
故障现象:
命令行下登陆提示 ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)
PHPmyadmin登陆时提示 #1045 - Access denied for user 'root'@'localhost' (using password: YES)
解决步骤:
1.以系统管理员身份登陆系统,打开cmd进入命令行。
2.net start 查看mysql是否启动。启动的话就停止net stop mysql.
3. 以下如果能进行,请跳过此步
找原来的备份文件,copy data\mysql到当前data目录下
4.跳过权限检查启动mysql.
mysqld-nt --skip-grant-tables
5.重新打开命令行。进入到mysql下的安装目录下bin下:
mysql -u root mysql
mysql> UPDATE user SET Password=PASSWORD('newpassword') where USER='root';
Query OK, 1 row affected (0.00 sec)
Rows matched: 1 Changed: 1 Warnings: 0
mysql> FLUSH PRIVILEGES;
Query OK, 0 rows affected (0.00 sec)
mysql> quit
Bye
6.在任务管理器里面杀掉mysqld-nt.exe进程。
在cmd里net start mysql
7.命令行测试:
D:\MySQL\bin>mysql -u root -p
Enter password: *******
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 1
Server version: 5.0.45-community-nt MySQL Community Edition (GPL)
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql>
测试成功
|
评分
-
查看全部评分
|