美文网首页
CentOS 7 安装 MySQL 5.7

CentOS 7 安装 MySQL 5.7

作者: 晚风无限 | 来源:发表于2018-12-13 10:24 被阅读6次
    1. 直接使用yum命令下载mysql来进行安装是不能成功的,安装过程会有问题,这里需要使用rpm命令来先进下载。
    rpm -Uvh https://repo.mysql.com//mysql57-community-release-el7-11.noarch.rpm
    
    1. 开始安装mysql
    yum install mysql-community-server -y
    
    1. 启动 mysql
    systemctl start mysqld
    
    1. 安装Mysql5.7与5.6相比略有不同,5.7版本会生成一个默认密码,5.6则不会,先记录一下默认的root密码
    grep "temporary password" /var/log/mysqld.log
    #登录,修改临时密码
    mysql -uroot -p
    ALTER USER 'root'@'localhost' IDENTIFIED BY 'YourNewPass4!';
    
    1. 设置好密码后,我们开始进行一些基本设置,依次看情况选择y,n 即可
    mysql_secure_installation
    
    mysql install
    1. 默认情况下是不能远程登录,如果需要使用Navicat远程连接数据库,需要进行如下配置
    mysql -uroot -p
    use mysql; 
    #将host设置为%表示任何ip都能连接mysql,当然也可以将host指定为某个ip
    update user set host='%' where user='root' and host='localhost';
    flush privileges;        #刷新权限,使配置生效
    
    1. 如需取消root远程连接
    mysql -uroot -p
    use mysql
    #将host设置为localhost表示只能本地连接mysql
    update user set host='localhost' where user='root';
    #刷新权限表,使配置生效
    flush privileges;
    
    #创建一个用户来用于远程访问,账号remoteuser,密码123456
    grant all on *.* to 'remoteuser'@'%' identified by '123456';
    flush privileges;
    

    相关文章

      网友评论

          本文标题:CentOS 7 安装 MySQL 5.7

          本文链接:https://www.haomeiwen.com/subject/blkvhqtx.html