1.问题
重装系统后,发现MySQL无法启动,不管是在服务中还是在cmd中都启动不了。
2.尝试解决
- .创建mysql服务:
开始–>运行–>cmd cd命令到mysql的bin目录下(如:d:\mysql\bin)
mysqld --install 这里填写mysql服务名(如:mysql) --defaults-file=“这里填写my.ini的路径(如:d:\mysql\my.ini)” ,刚开始输错了,发现
仔细对照发现命令输的有问题
去掉install前面的–发现成功,不过启动失败了 - 解决系统错误1067
这个网上不同的人有不同的解决办法。我的是把MySQL的my.ini中的datadir修改到自己安装的目录下面
[mysqld]
# The TCP/IP Port the MySQL Server will listen on
port=3306
#Path to installation directory. All paths are usually resolved relative to this.
basedir="D:/mysql5.5/"
#Path to the database root
datadir="D:\mysql5.5\data"
# The default character set that will be used when a new schema or table is
# created and no character set is defined
character-set-server=utf8
服务就能重新启动了
- 接下来登陆账户
发现出现了Access denied,我们继续修改my.ini文件
在最后加上skip-grant-tables
接着继续登录,在命令行中输入mysql -u root发现登陆成功
接下来我们输入命令修改密码
use mysql
update user set password=password(‘0025’) where user=“root”;
flush privileges;
quit
密码修改完成
最后登陆账户,发现成功
参考资料
https://blog.csdn.net/qq_34885598/article/details/84344946
https://blog.csdn.net/qq_27607965/article/details/80753505
欢迎一起讨论!