欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

MySQL8.0.11安装总结教程图解

程序员文章站 2023-12-05 13:05:46
安装环境: cat /etc/os-release 查看centos系统版本信息; getconf long_bit 获取惭怍系统位数 系统为 64位 cen...

安装环境:

MySQL8.0.11安装总结教程图解

MySQL8.0.11安装总结教程图解

cat /etc/os-release 查看centos系统版本信息;

getconf long_bit 获取惭怍系统位数

系统为 64位 centos 7

配置安装源:


MySQL8.0.11安装总结教程图解

rpm -uvh https://repo.mysql.com/mysql57-community-release-el7-11.noarch.rpm 
yum --enablerepo=mysql80-community install mysql-community-server

启动mysql服务

systemctl start mysqld.service

或者

service  mysqld start

MySQL8.0.11安装总结教程图解

mysql 服务状态:

systemctl  status mysqld

或者

service mysqld status 实际上也是会转换为systemctl  status mysqld去获取状态

MySQL8.0.11安装总结教程图解

查看mysql root 临时密码

MySQL8.0.11安装总结教程图解

grep "a temporary password" /var/log/mysqld.log

根据临时密码重置新密码和密码策略

MySQL8.0.11安装总结教程图解

mysql_secure_installation ;

password policy:

MySQL8.0.11安装总结教程图解

MySQL8.0.11安装总结教程图解

按照提示步骤一步步完成;

设置可以远程连接

MySQL8.0.11安装总结教程图解

firewall-cmd --add-port=3306/tcp --permanent   开放数据库访问端口 tcp 协议

firewall-cmd --reload    重新加载防火墙信息

firewall-cmd --list-ports  查看开放的端口信息

lsof -i:3306 验证

MySQL8.0.11安装总结教程图解

mysql 客户端登录验证

MySQL8.0.11安装总结教程图解

查看版本:

MySQL8.0.11安装总结教程图解

有的客户端连接会出现 error 2059错误

主要解决方案:

MySQL8.0.11安装总结教程图解

更改default_authentication_plugin = mysql_native_password

vim /etc/my.cnf

MySQL8.0.11安装总结教程图解

重启服务就可以连接了;有可能没有重启成功;(如果不行 应该为1045,可能操作系统默认连接为127.0.0.1,不是localhost导致连接不上,更改用户host

use mysql; update user set host='%' where user='root';windows 客户端连接时出现, 这种应该和 error 2059: authentication plugin 'caching_sha2_password' can not be loaded '----' 无关 );

安装的时候可以明显感觉到mysql8.0 新特性 安全属性提高非常多;

总结

以上所述是小编给大家介绍的mysql8.0.11安装总结教程图解,希望对大家有所帮助