MySql教程

Centos安装mysql5.7

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

Centos安装mysql5.7

  1. 由于CentOS 的yum源中没有mysql,需要到mysql的官网下载yum repo配置文件。

    wget https://dev.mysql.com/get/mysql57-community-release-el7-9.noarch.rpm
    

在这里插入图片描述

  1. 然后进行repo的安装:

    rpm -ivh mysql57-community-release-el7-9.noarch.rpm
    

    执行完成后会在/etc/yum.repos.d/目录下生成两个repo文件mysql-community.repo mysql-community-source.repo
    在这里插入图片描述

  2. 安装mysql

    yum install mysql-server
    

在这里插入图片描述

  1. 启动mysql

    systemctl start mysqld
    

在这里插入图片描述

  1. 查看临时密码

    grep 'temporary password' /var/log/mysqld.log
    

在这里插入图片描述

  1. 使用临时密码登录
    在这里插入图片描述

  2. 但是修改密码出现问题
    在这里插入图片描述

  3. 密码策略修改

    set global validate_password_policy=0;
    
    set global validate_password_length=1;
    

在这里插入图片描述

  1. 修改密码

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

在这里插入图片描述

  1. 授权远程访问

    grant all privileges on *.* to 'root'@'%' identified by '12345678' with grant option;
    

在这里插入图片描述

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