安装Mysql总是遇到很多的问题
一、安装包:
安装包:直接官网下载(https://dev.mysql.com/downloads/windows/installer/),由于之前安装免安装压缩包版本,总是出现各种问题,所以,直接重新下载了一个Mysql install 安装版本
相关网址:https://www.cnblogs.com/chengxs/p/5986095.html
二、修改密码:
我去网上看他们说的找到my.ini(这个一个Mysql的配置文件),可我总是怎么找都找不到,于是我就按照网上说的去设置显示隐藏文件,结果还是看不到my.ini ,于是再去网上找,网上好多个版本,基本都是没有用的。
原来,要找到my.ini,要先去找到ProgramData,(这里要先打开显示隐藏文件的设置):
my.ini文件位置.png
1、编辑点开my.ini文件 ,这是让Mysql 不用密码就能登入
. image.png2、先停用此服务:
image.png3、执行命令 mysqld --skip-grant-tables
1)、遇到如下错误:
mysqld: Can't change dir to '\Program Files\MySQL\MySQL Server 8.0\data'
2)、解决办法:
a、由于mysqld –skip-grant-tables实测在mysql8.0中已失效,现使用mysqld --console --skip-grant-tables --shared-memory
b、此外,由于my.ini文件和mysqld文件不在同一个文件夹内,需要指定my.ini文件的位置,通过--defaults-file="C:\ProgramData\MySQL\MySQL Server 8.0\my.ini"
故,命令如下:
mysqld --defaults-file="C:\ProgramData\MySQL\MySQL Server 8.0\my.ini" --console --skip-grant-tables --shared-memory
4、另外开一个cmd,使用 mysql -u root -p
不用管password,直接回车
image.png
5、修改root密码
首先,采用命令:
update user set authentication_string=password("123456") where user="root";
出现以下错误:
mysql> update user set authentication_string=password("123456") where user="root";
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that
corresponds to your MySQL server version for the right syntax to use near '("123456") where user="root"' at line 1
mysql>
因此,换一种方式,采用如下命令:
mysql> ALTER USER 'root'@'localhost' IDENTIFIED BY '123456';
Query OK, 0 rows affected (0.13 sec)
可能会出现错误:The MySQL server is running with the –skip-grant-tables option so it cannot execute this statement(本人执行时遇到过,所以记录下来),没关系,刷新权限,重新执行以上命令即可。
6、刷新权限,命令如下:
mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)
退出,重新登录
mysql>exit;
网友评论