Linux使用安装Mysql

2022/2/22 19:23:32

本文主要是介绍Linux使用安装Mysql,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

使用Linux安装Mysql详细步骤,及The GPG keys listed for the "MySQL 5.7 Community Server"...报错处理

  • 一、安装步骤
  • 二、配置mysql相关设置

备注:本方案适用于yum方法安装,如果无法使用yum指令,需要先下载;

一、安装步骤

(安装路径:/usr/local/mysql)
1.下载Mysql安装包
[root@localhost local]# wget https://dev.mysql.com/get/mysql57-community-release-el7-11.noarch.rpm
2.安装mysql安装源
[root@localhost local]# yum -y localinstall mysql57-community-release-el7-11.noarch.rpm
3.开始安装mysql包
[root@localhost local]# yum -y install mysql-community-server
如果此处有报KEY 过期请参照下列方法进行解决;
问题1:yum -y install mysql-community-server
执行安装服务后报错,key过期
The GPG keys listed for the “MySQL 5.7 Community Server” repository are already installed but they are not correct for this package. Check that the correct key URLs are configured for this repository.
处理方法:新装mysql可以使用的解决方案就是重新导入新的秘钥:

rpm --import https://repo.mysql.com/RPM-GPG-KEY-mysql-2022

随后再重新执行yum -y install mysql-community-server
4.按照上述操作完成后,可以使用mysql -v查看当前mysql版本,如有显示版本号既安装成功。
在这里插入图片描述

二、配置mysql相关设置

1.设置mysql服务开机自启动
[root@localhost local]# systemctl enable mysqld
[root@localhost local]# systemctl daemon-reload
2.修改root登录密码
首先查询到默认密码,或者搜索相关文档修改
搜索默认密码指令:grep 'temporary password' /var/log/mysqld.log
搜索到密码后输入:[root@localhost local]# mysql -u root -p
修改密码。
3.开放mysql默认端口3306
找到如下文件夹,在iptables中添加下列代码,保存并退出
[root@localhost sysconfig]# cd /etc/sysconfig/
[root@localhost sysconfig]# vim iptables
#添加代码如下

-A INPUT -p tcp --dport 3306 -j ACCEPT

添加完成后重启防火墙service iptables restart
到此处我们的数据库就已经可以开始使用了。
到这里数据库已经安装完成,可以新建我们的数据库和表去添加数据了



这篇关于Linux使用安装Mysql的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程