mysql8.0.18解压版安装踩的坑
MySQL 8.0 Windows zip 安装过程介绍,具体如下,我会把途中的坑专门标记出来。
转载:https://www.jb51.net/article/140952.htm
准备:
MySQL8.0 Windows zip包下载地址。
环境:Windows 10
一、安装
1. 解压zip包到安装目录
比如我的安装目录是:D:\Program\MySQL
2.配置文件
在Windows系统中,配置文件默认是安装目录下的 my.ini 文件,部分配置需要在初始安装时配置,大部分也可以在安装完成后进行更改。当然,极端情况下,所有的都是可以更改的。
在安装根目录下添加 my.ini,比如我这里是:D:\Program\MySQL\my.ini,写入基本配置:
37 [mysqld] 38 # Remove leading # and set to the amount of RAM for the most important data 39 # cache in MySQL. Start at 70% of total RAM for dedicated server, else 10%. 40 # innodb_buffer_pool_size = 128M 41 42 # Remove leading # to turn on a very important data integrity option: logging 43 # changes to the binary log between backups. 44 # log_bin 45 46 # These are commonly set, remove the # and set as required. 47 basedir = >>>>>>>>>>>>>>>>>>>>>>>>>>>>> 48 datadir = >>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 49 port = 3306 50 # server_id = ..... 51 52 53 # Remove leading # to set options mainly useful for reporting servers. 54 # The server defaults are faster for transactions and fast SELECTs. 55 # Adjust sizes as needed, experiment to find the optimal values. 56 # join_buffer_size = 128M 57 # sort_buffer_size = 2M 58 # read_rnd_buffer_size = 2M 59 60 sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES 61 62 character-set-server = utf8mb4 63 64 performance_schema_max_table_instances = 600 65 table_definition_cache = 400 66 table_open_cache = 256 67 68 [mysql] 69 default-character-set = utf8mb4 70 71 [client] 72 default-character-set = utf8mb4
注意,里面的 basedir 是我本地的安装目录,datadir 是我数据库数据文件要存放的位置,各项配置需要根据自己的环境进行配置。
查看所有的配置项,可参考:MySQL 8.0 Reference Manual
这里踩了第一个坑:我写配置文件的时候不清楚utf8mb4和mb3是什么东西,所以照旧填写了utf8,结果安装的时候出错了
Warning: (3719, "'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous.")
警告:(3719,“'utf8'是
当前是字符集UTF8MB3的别名,但将是UTF8MB4的别名
在未来的版本中。请考虑使用UTF8MB4,以便明确。”)
关于utf8与utfmb3/4的区别官网也有提及:
https://dev.mysql.com/doc/refman/5.6/en/charset-unicode-utf8mb3.html有兴趣的可以查阅以下,不过我查这个错误的时候看到好多因为编码改变出问题的文章,以后踩到再来吧。
3.初始化数据库
在MySQL安装目录的 bin 目录下执行命令:
1
|
mysqld --initialize --console |
执行完成后,会打印 root 用户的初始默认密码,比如:
2018-04-20T02:35:01.507037Z 0 [Warning] [MY-010915] [Server] 'NO_ZERO_DATE', 'NO_ZERO_IN_DATE' and 'ERROR_FOR_DIVISION_BY_ZERO' sql modes should be used with strict mode. They will be merged with strict mode in a future release.
2018-04-20T02:35:01.507640Z 0 [System] [MY-013169] [Server] D:\Program\MySQL8\bin\mysqld.exe (mysqld 8.0.11) initializing of server in progress as process 11064
2018-04-20T02:35:01.508173Z 0 [ERROR] [MY-010340] [Server] Error message file 'D:\Program\MySQL\share\english\errmsg.sys' had only 1090 error messages, but it should contain at least 4512 error messages. Check that the above file is the right version for this program!
2018-04-20T02:35:05.464644Z 5 [Note] [MY-010454] [Server] A temporary password is generated for root@localhost: APWCY5ws&hjQ
2018-04-20T02:35:07.017280Z 0 [System] [MY-013170] [Server] D:\Program\MySQL8\bin\mysqld.exe (mysqld 8.0.11) initializing of server has completed
其中,第4行的“APWCY5ws&hjQ”就是初始密码,在没有更改密码前,需要记住这个密码,后续登录需要用到。
要是你手贱,关快了,或者没记住,那也没事,删掉初始化的 datadir 目录,再执行一遍初始化命令,又会重新生成的。当然,也可以使用安全工具,强制改密码,用什么方法,自己随意。
参考:链接地址
4.安装服务
在MySQL安装目录的 bin 目录下执行命令:
mysqld --install [服务名]
这里踩了第二个坑,服务名我自己起了一个名字却在启动的时候出了问题
1 net start mysql 发生系统错误2 系统找不到指定的文件
尝试了几下无果之后我放弃了自己起名字的危险想法,如何出去服务再安装看这里:
https://www.jianshu.com/p/6d8ed7c36e6f
后面的服务名可以不写,默认的名字为 mysql。当然,如果你的电脑上需要安装多个MySQL服务,就可以用不同的名字区分了,比如 mysql5 和 mysql8。
安装完成之后,就可以通过命令net start mysql启动MySQL的服务了。
参考:链接地址
二.更改密码和密码认证插件
在MySQL安装目录的 bin 目录下执行命令:
1
|
mysql -uroot -p |
这时候会提示输入密码,记住了第3步的密码,填入即可登录成功,进入MySQL命令模式。
在MySQL8.0.4以前,执行
1
|
SET PASSWORD=PASSWORD( '[修改的密码]' ); |
就可以更改密码,但是MySQL8.0.4开始,这样默认是不行的。因为之前,MySQL的密码认证插件是“mysql_native_password”,而现在使用的是“caching_sha2_password”。
因为当前有很多数据库工具和链接包都不支持“caching_sha2_password”,为了方便,我暂时还是改回了“mysql_native_password”认证插件。
在MySQL中执行命令:
1
|
ALTER USER 'root' @ 'localhost' IDENTIFIED WITH mysql_native_password BY 'password' ; |
修改密码验证插件,同时修改密码。
如果想默认使用“mysql_native_password”插件认证,可以在配置文件中配置default_authentication_plugin项。
1
2
|
[mysqld] default_authentication_plugin=mysql_native_password |