windows安装mysql8
1、下载地址:https://dev.mysql.com/downloads/mysql/
2、解压到指定目录
3、手动编写my.ini
[Client] port = 3306 [mysqld] port = 3306 basedir="E:/MySQL/mysql-8.0.16" datadir="E:/MySQL/mysql-8.0.16/data/" max_connections=100 character-set-server=utf8 default-storage-engine=INNODB sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES wait_timeout=31536000 interactive_timeout=31536000 default_authentication_plugin=mysql_native_password [mysql] default-character-set=utf8
4、在bin目录下执行
mysqld --initialize
5、安装服务
mysqld install mysql
6、启动
net start mysql
7、登录密码在data的err文件里面
8、问题处理:
1)登录不进去的异常
2)停止服务,跳过验证启动:
# 停止 net stop mysql # 跳过验证启动 mysqld --console --skip-grant-tables --shared-memory
3)登录,修改密码为空
# 登录,无密码 mysql -u root -p use mysql # 修改密码为空 update user set authentication_string = '' where user = 'root';
4)重启登录
# 停掉所有进程,重启 net start mysql # 登录,无密码 mysql -u root -p