美文网首页天工开物我爱编程
Linode Centos 7 安装MySql

Linode Centos 7 安装MySql

作者: 孙亖 | 来源:发表于2017-04-01 11:43 被阅读29次

    下载安装

    wget http://repo.mysql.com/mysql57-community-release-el7-9.noarch.rpm
    sudo rpm -ivh mysql57-community-release-el7-9.noarch.rpm
    sudo yum install mysql-server
    sudo systemctl start mysqld

    取消旧密码设置新密码

    1、修改 /etc/my.cnf,在 [mysqld] 小节下添加一行:skip-grant-tables=1

    这一行配置让 mysqld 启动时不对密码进行验证

    2、重启 mysqld 服务:systemctl restart mysqld 或者 mysqld --skip-grant-tables

    3、使用 root 用户登录到 mysql:mysql -u root

    4、切换到mysql数据库,更新 user 表:

    use mysql;

    update user set authentication_string = password('root'), password_expired = 'N', password_last_changed = now() where user = 'root';

    FLUSH PRIVILEGES;

    在之前的版本中,密码字段的字段名是 password,5.7版本改为了 authentication_string

    5、退出 mysql,编辑 /etc/my.cnf 文件,删除 skip-grant-tables=1 的内容

    6、重启 mysqld 服务,再用新密码登录即可

    去安庆设置

    sudo mysql_secure_installation

    相关文章

      网友评论

        本文标题:Linode Centos 7 安装MySql

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