oi
mysql,是数据库
一、yum安装
1、 下载 MySQL 源和安装包
wget -i -c http://dev.mysql.com/get/mysql57-community-release-el7-10.noarch.rpm
yum -y install mysql57-community-release-el7-10.noarch.rpm
2、为避免出现 源 "MySQL 5.7 Community Server" 的 GPG 密钥已安装,但是不适用于此软件包。
rpm --import https://repo.mysql.com/RPM-GPG-KEY-mysql-2022
3、安装 mysql
yum -y install mysql-community-server
4、启动mysql,查看初始化密码
systemctl restarrt mysqld
cat /var/log/mysql.log | grep "password"
5、登入 mysql
mysql -uroot -p"查出的密码"
6、修改初始化密码
alter user root@"localhost" identified with mysql_native_password by "新密码";
二、RPM安装
1、进入mysql 官网
https://www.mysql.com/cn/
2、复制连接
# 需要下载的安装包,使用 wget 加 复制的路径,注意安装顺序
4、Mysql server
3、Client Utilites
1、Mysql Configuration
2、Shared Libraries
3、通yum安装一样,启动,查初始密码,修改密码
标签:安装,community,yum,com,mysql,rpm From: https://blog.csdn.net/2403_88576723/article/details/143612705