美文网首页Ubuntu指南程序员
CentOS7安装使用 MySQL

CentOS7安装使用 MySQL

作者: 史迪奇的博客 | 来源:发表于2018-03-12 16:07 被阅读2次

    不多废话,直接硬操作。

    一、安装

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

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

    yum install mysql-server

    二、启动

    systemctl start mysqld

    ——查看 temporary Password

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

    三、配置

    mysql_secure_installation

    输入temporary Password,并修改密码

    四、远程连接

    例如,你想root使用123456从任何主机连接到mysql服务器。

    GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY '123456' WITH GRANT OPTION;

    远程连接

    五、完结

    相关文章

      网友评论

        本文标题:CentOS7安装使用 MySQL

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