美文网首页
MySQL安装配置远程登录

MySQL安装配置远程登录

作者: zzl灬 | 来源:发表于2020-01-17 11:54 被阅读0次

    安装MySQL

    sudo apt-get install mysql-server
    

    中间需要设置root密码和确认密码

    sudo apt-get install mysql-client
    sudo apt-get install libmysqlclient-dev
    

    配置MySQL远程登录

    修改MySQL配置文件

    配置文件路径:/etc/mysql/mysql.conf.d/mysqld.cnf

    注释bind-address这行

    mysqld.cnf.png
    登录MySQL
    grant all privileges on *.* to 'root'@'%' identified by 'password' with grant option;
    

    重启MySQL

    sudo service mysql restart
    

    相关文章

      网友评论

          本文标题:MySQL安装配置远程登录

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