0


Linux下载mysql(Centos7)

1.检查本机是否下载过mysql

[root@localhost ~]# rpm -qa|grep -i mysql

如果未下载过,则为以下情形
在这里插入图片描述
如已下载,会有目录变化
在这里插入图片描述
如需删除,执行指令

[root@localhost /]# rpm -e --nodeps mysql-libs-5.7.41-1.el7.x86_64

之后再次执行指令,查看是否删除

2.下载mysql

下载官方的MySQL包

[root@localhost mysql]# wget https://repo.mysql.com/mysql57-community-release-el7.rpm

在这里插入图片描述

安装mysql包

[root@localhost mysql]# yum -y install mysql57-community-release-el7.rpm

在这里插入图片描述

安装mysql

[root@localhost mysql]# yum -y install mysql-community-server 

出现报错

在这里插入图片描述
解决方法:禁掉GPG验证检查

[root@localhost mysql]# yum -y install mysql-community-server --nogpgcheck

在这里插入图片描述

启动mysql服务

[root@localhost mysql]# systemctl start mysqld.service

查看运行状态

[root@localhost mysql]# service mysqld status

在这里插入图片描述
上图显示即为启动成功

查看密码

[root@localhost mysql]# grep 'password' /var/log/mysqld.log

在这里插入图片描述
密码为host:后的部分

进入数据库

可直接复制上述密码进入数据库

[root@localhost mysql]# mysql -u root -p

在这里插入图片描述
quit退出
在这里插入图片描述

更改密码

[root@localhost mysql]# mysqladmin -u root -p password

在这里插入图片描述
默认root密码不能过于简单,否则会出现ERROR,可先设置免密登录,再修改密码

设置免密登录

vim /etc/my.cnf文件;
在[mysqld]后添加skip-grant-tables(登录时跳过权限检查)

[root@localhost mysql]# vim /etc/my.cnf

在这里插入图片描述
重启mysql服务,进入mysql

[root@localhost mysql]# systemctl restart mysqld[root@localhost mysql]# mysql -u root -p

输入任意密码进入

输入 show databases;
在这里插入图片描述

切换到mysql数据库

在这里插入图片描述

修改密码为root

update user setauthentication_string=password('root') where user='root';

密码也可以设置为其他值
在这里插入图片描述
编辑 my.cnf 文件,注释掉之前增加的那行
在这里插入图片描述

重启服务

[root@localhost mysql]# systemctl restart mysqld

使用密码root重新进入mysql

在这里插入图片描述
Linux下的mysql安装成功

标签: mysql linux 数据库

本文转载自: https://blog.csdn.net/qq_52862408/article/details/130054332
版权归原作者 人间_ 所有, 如有侵权,请联系我们删除。

“Linux下载mysql(Centos7)”的评论:

还没有评论