hello head

1、MYSQL服务启动出现错误。

MySQL 'localhost' (10061)

我这里遇到的问题是如下解决的:

my.ini文件里
#Path to installation directory. All paths are usually resolved relative to this.
basedir="D:/tools/MYSQL5.5/"

#Path to the database root
datadir="D:/tools/MYSQL5.5/Data/"

datadir需在basedir目录的下一层,如上所示。

此时,MYSQL服务可以启动启动起来了。

接下来又遇到一个问题: Access denied for user 'root'@'localhost'(using password:YES) ERROR 1045(28000)

需要重新设置root用户的登录密码,步骤如下:

1、首先在my.ini文件的最末尾加上 "skip-grant-tables"

2、重启MYSQL服务

3、此时可以通过mysql -u root -p登录到mysql服务器

4、修改密码,步骤如下:

a.输入如下语句:

use mysql;
update user set password = PASSWORD('新密码') where user = 'root';

b. 删除或注释掉my.ini的 "skip-grant-tables"

c. 重启MYSQL服务

posted on 2017-08-24 17:06  gardonkoo  阅读(148)  评论(0编辑  收藏  举报

hello foot