美文网首页
Linux apt-get安装mysql

Linux apt-get安装mysql

作者: peroLuo | 来源:发表于2020-05-19 17:33 被阅读0次

    1. 更新 apt-get

     apt-get update
    

    2. 安装 mysql-client-core-5.7

    apt-get install MySQL-client-core-5.7
    

    3. 安装 mysql-client-5.7

    apt-get install mysql-client-5.7
    

    4. 安装 mysql-server-5.7

    apt-get install mysql-server-5.7
    

    5. 启动mysql

    service mysql restart
    

    6. 开启远程访问

    1. 修改配置文件

    cd /etc/mysql/mysql.config.d
    vim mysqld.cnf
    

    2. 把bind-address 改成

    bind-address = 0.0.0.0:
    

    7. 添加连接访问账号密码

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

    其中root为登录账号、youpassword为登录密码

    8. 刷新权限

    FLUSH PRIVILEGES 
    

    9. 重启

    service mysql restart
    

    相关文章

      网友评论

          本文标题:Linux apt-get安装mysql

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