使用解压版本安装,参考https://blog.csdn.net/u014722022/article/details/100170664
1、创建my.ini文件并配置
配置内容
[mysqld]
# 设置3306端口
port=3306
# 设置mysql的安装目录
basedir=D:\\MySQL\\
# 设置mysql数据库的数据的存放目录
datadir= D:\\MySQL\\data
# 允许最大连接数
max_connections=200
# 允许连接失败的次数。
max_connect_errors=10
# 服务端使用的字符集默认为utf8mb4
character-set-server=utf8mb4
# 创建新表时将使用的默认存储引擎
default-storage-engine=INNODB
# 默认使用“mysql_native_password”插件认证
#mysql_native_password
default_authentication_plugin=mysql_native_password
explicit_defaults_for_timestamp=true
skip-grant-tables
[mysql]
# 设置mysql客户端默认字符集
default-character-set=utf8mb4
[client]
# 设置mysql客户端连接服务端时默认使用的端口
port=3306
default-character-set=utf8mb4
一定要双\
2、一定以管理员身份登录
3、TIMESTAMP with implicit DEFAULT value is deprecated.
解决方法:在my,ini文件中加
explicit_defaults_for_timestamp=true
4、服务名无效
原因:系统中并没有注册mysql到服务中。即当前路径下没有mysql服务。
很蠢的错:
1、进入到到MySQL的安装路径下bin
2、在命令行中输入mysqld --install
5、ERROR 2003 (HY000): Can’t connect to MySQL server on ‘localhost’ (10061)
解决方法:计算机管理–>服务与应用程序–>服务
双击打开MySQL,点击启动(重启的操作也可以在这里进行)
6、ERROR 1045 (28000): Access denied for user ‘root’@‘localhost’ (using password: YES)
先在my.ini中加了一句skip-grant-tables
但并没有什么用,同样的错误会再次出现
需要重启后才能有
到这里就连接成功了
7、mysqld --initialize
过程中还出现了以下错误
initialize specified but the data directory has files in it. Aborting
图片是别人的,出处https://blog.csdn.net/tr1912/article/details/81271851
我的方法比较简单,直接把创建出来的data文件删掉,就可以解决,也可以用图片出处的方法。
8、修改密码
需要在my.ini中先设置skip-grant-tables
flush privileges;
set password for root@localhost=password('新密码');