mysql_install

From: https://blog.csdn.net/qq_39150374/article/details/112471108

最近因为公司需求需要升级mysql版本到服务器(服务器系统使用centos8) ,mysql版本8.0.22。在安装过程中也遇到了很多坑,现在和大家分享如下:

1.1 首先用xshell远程连接到服务器

1.2 如果服务器之前安装过mysql请先卸载,我这里是用yum安装的,现在通过yum去卸载

yum remove -y mysql
find / -name mysql 

1.3 卸载完成后,使用以下命令:

下载mysql安装包:

wget https://dev.mysql.com/get/mysql80-community-release-el8-1.noarch.rpm

yum install mysql80-community-release-el8-1.noarch.rpm

1.4 检查数据源

查看mysql源是否安装成功:yum repolist enabled | grep "mysql.*-community.*"

1.5 禁用CentOS8自带mysql模块

如果出现No match for argument: mysql-community-server
可执行 yum module disable mysql命令

yum module disable mysql 

1.6 安装mysql命令

前面都是必不可少的准备工作,现在才是重点:

yum install mysql-community-server

Is this ok [y/Y] 一直 y到底

1.7 启动mysql

在启动mysql时,遇到了一个问题:

[root@iZuf6hx48jsavuzwp5hv7jZ soft]# service mysqld start 

遇到问题

[root@iZuf6hx48jsavuzwp5hv7jZ soft]# service mysqld start
Redirecting to /bin/systemctl start mysqld.service

正确启动命令:

[root@iZuf6hx48jsavuzwp5hv7jZ soft]# /bin/systemctl start mysqld.service
[root@iZuf6hx48jsavuzwp5hv7jZ soft]# service mysqld status 

1.8 显示mysql的随机密码

grep 'temporary password' /var/log/mysqld.log

密码是host:后面的一串字符。

1.9 登录并修改mysql密码

mysql -u root -p 

修改密码需要注意,这里密码先修改成 “Root_21root”

ALTER USER 'root'@'localhost' IDENTIFIED BY 'Root_21root'; 
会报以下错误:
ERROR 1819 (HY000): Your password does not satisfy the current policy requirements

解决办法:
一定要先修改默认密码为: Root_21root 满足它的策略,再进行下面的操作:
SHOW VARIABLES LIKE 'validate_password%'; 

修改密码长度:
set global validate_password.length=1; 
修改密码等级:
set global validate_password.policy=0; 

设置成自己想要的密码:
ALTER USER 'root'@'localhost' IDENTIFIED BY '123456';

Mysql8.0.22开放远程访问

create user 'root'@'%' identified by 'root123'; 
grant all privileges on *.* to 'root'@'%' with grant option; 

开放防火墙端口

直接在安全组开放mysql端口号

解决2059 - Authentication plugin ‘caching_sha2_password’ cannot be loaded:

如果创建mysql的数据库连接报如下错误:2059 - Authentication plugin ‘caching_sha2_password’ cannot be loaded:

从错误信息可知caching_sha2_password不能加载。

以上报错是由于目前已有的客户端连接软件还不支持Mysql8新增加的加密方式caching_sha2_password,所以我们需要修改用户的加密方式,将其改为老的加密验证方式。可以看到当前用户的加密方式为caching_sha2_password。执行以下命令:

use mysql;
select user,plugin from user where user='root';
alter user 'root'@'%' identified with mysql_native_password by 'Admin@123';
flush privileges;

再次尝试连接Mysql,连接成功。
示意图:


mac 安装mysql

1、brew 安装

brew install mysql
2、添加如下环境变量到 ~/.bash_profile 和 ~/.zshrc

export PATH="/usr/local/Cellar/mysql/8.0.12/bin:$PATH"
3、启动MySQL服务
mysql.server start
mysql.server stop
mysql.server status
4、初始化,按照提示一步步走即可
mysql_secure_installation
5、登录
mysql -u root -p

问题: java代码无法连接
修改密码模式
登录MySQL后输入:

1
2
3
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'YourPassword';
FLUSH PRIVILEGES;
Author

陈昭

Posted on

2021-02-20

Updated on

2021-12-27

Licensed under

You need to set install_url to use ShareThis. Please set it in _config.yml.
You forgot to set the business or currency_code for Paypal. Please set it in _config.yml.

Kommentare

You forgot to set the shortname for Disqus. Please set it in _config.yml.