Centos7安装MySQL8

Centos7安装MySQL8

通过配置yum安装MySQL

yum源的配置是通过清华源配置的

https://mirrors.tuna.tsinghua.edu.cn/

环境介绍

操作系统:Centos7.8

MySQL版本:8.0.36-1

安装前准备

  1. 卸载MariaDB

    shell 复制代码
    # 查看是否安装mariadb
    rpm -qa|grep mariadb
    
    # 卸载
    rpm -e --nodeps 文件名
    
    # 检查是否卸载干净
    rpm -qa|grep mariadb
  2. 检查依赖

    shell 复制代码
    # 查看是否安装libaio
    rpm -qa|grep libaio
    
    # 如果没有安装则执行
    yum -y install libaio //安装libaio 
    
    # 查看是否安装numactl
    rpm -qa|grep numactl
    
    # 如果没有安装则执行
    yum -y install numactl //安装numactl 	

安装MySQL

创建yum源的过程:

https://mirrors.tuna.tsinghua.edu.cn/


即:

shell 复制代码
# 执行如下命令创建yum源文件
vim /etc/yum.repos.d/mysql-community.repo
# 将下面内容赋值到上面这个文档中
[mysql-connectors-community]
name=MySQL Connectors Community
baseurl=https://mirrors.tuna.tsinghua.edu.cn/mysql/yum/mysql-connectors-community-el7-$basearch/
enabled=1
gpgcheck=1
gpgkey=https://repo.mysql.com/RPM-GPG-KEY-mysql-2022

[mysql-tools-community]
name=MySQL Tools Community
baseurl=https://mirrors.tuna.tsinghua.edu.cn/mysql/yum/mysql-tools-community-el7-$basearch/
enabled=1
gpgcheck=1
gpgkey=https://repo.mysql.com/RPM-GPG-KEY-mysql-2022

[mysql-8.0-community]
name=MySQL 8.0 Community Server
baseurl=https://mirrors.tuna.tsinghua.edu.cn/mysql/yum/mysql-8.0-community-el7-$basearch/
enabled=1
gpgcheck=1
gpgkey=https://repo.mysql.com/RPM-GPG-KEY-mysql-2022

保存过后到/etc/yum.repos.d/ 下面会发下多了上面创建的mysql-community.repo yum源文件

使用yum安装MySQL

shell 复制代码
# 执行如下查看msyql版本 (--showduplicates 是查看对应版本)
yum search mysql-community-server --showduplicates
# 安装对应版本的mysql  (--nogpgcheck 是跳过gpg检查)
yum -y install mysql-community-server-8.0.36-1.el7.x86_64 --nogpgcheck

启动MySQL并修改初始密码

shell 复制代码
# 启动
systemctl start mysqld
# 查看mysql服务启动是否成功
systemctl status mysqld
shell 复制代码
#查看初始密码
grep 'temporary password' /var/log/mysqld.log

# 登录mysql,一定要注意:-p和'密码'之间是没有空格的
mysql -u root -p'x*qrf.jvo9mS'

#修改root初始密码
ALTER USER 'root'@'localhost' IDENTIFIED BY 'Root@123';

开放 root 账户远程登录

shell 复制代码
#重新登录
mysql -u root -p'Root@123'
# 1、进入数据库
use mysql;
# 2、修改user表
update user set host='%' where user='root';
# 重载授权表
FLUSH PRIVILEGES;
# 退出
exit

# 重启
systemctl restart mysqld

总结

至此安装完毕!

相关推荐
Zz_waiting.6 分钟前
网络原理 - 11(HTTP/HTTPS - 2 - 请求)
运维·网络·网络协议·mysql·http·https·抓包
苹果酱05671 小时前
python3语言基础语法整理
java·vue.js·spring boot·mysql·课程设计
♡喜欢做梦1 小时前
【MySQL】聚合查询 和 分组查询
数据库·mysql
卖核弹的小屁孩1 小时前
定时任务备份Docker中MySQL数据库
mysql·docker
A charmer4 小时前
【MySQL】库的操作
数据库·mysql
Mr.Demo.4 小时前
[MySQL数据库] InnoDB存储引擎(四): InnoDB磁盘文件
数据库·mysql
刘大猫.4 小时前
Centos Ubuntu RedOS系统类型下查看系统信息
linux·ubuntu·centos·ip·ifconfig·redos·查询系统信息
maomi_95264 小时前
MySQL 在 CentOS 7 环境下的安装教程
大数据·数据库·mysql
iRayCheung9 小时前
Docker安装的mysql限制ip访问
tcp/ip·mysql·docker