CentOS7.X安装MySQL5.7数据库概述

CentOS7.X安装MySQL5.7数据库

设置rpm下载目录在/opt目录下新建一个目录存放mysql

cd /opt
sudo mkdir mysql在这里插入代码片

下载MySQL的源

wget http://repo.mysql.com/mysql57-community-release-el7-8.noarch.rpm

如果在这之前没有提示-bash: wget: command not found,那么还得先安装wget

sudo yum install wget

安装MySQL的rpm

sudo rpm -ivh mysql57-community-release-el7-8.noarch.rpm

安装MySQL

sudo yum install mysql-server

在这步中只需要一直y然后回车就行,数据库就安装好了,现在进行连接:

mysql -uroot -p
root
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock'(2)

这是/var/lib/mysql权限问题,修改MySQL权限为当前用户

sudo chown -R xxx:xxx /var/lib/mysql

xxx为当前的用户名以及所属组
 重启MySQL服务

service mysqld restart

密码输入root即可
 如果还不行的话通过这个命令获得初始密码

cat /var/log/mysqld.log  | grep password

其中A temporary password is generated for root@localhost: bGlY?13TtFyX–:后面的就是初始密码;登陆进去之后先不做其他操作,作如下操作:

set global validate_password_policy=0;
set global validate_password_length=4;

设置密码

alter user 'root'@'localhost' identified by 'root';

自此CentOS安装MySQL5.7就完美安装了

 mysql -uroot -p
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 4
Server version: 5.7.20 MySQL Community Server (GPL)

Copyright (c) 2000, 2017, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql>
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值