美文网首页Python
Ubuntu18.4安装MySQL5.7

Ubuntu18.4安装MySQL5.7

作者: 星星曦馨 | 来源:发表于2018-10-09 20:12 被阅读0次

    1、下载mysql

    sudo apt-get update
    sudo apt-get install -y mysql-server mysql-client
    

    安装过程会输入密码,但是我试过了不会提示输入密码
    2、安装好了运行下面代码

    sudo cat /etc/mysql/debian.cnf
    
    image.png

    password = 后面的就是密码
    再输入以下指令

    mysql -udebian-sys-maint -pQAJmXh4Tmotl5pI
    

    //注意!
    //这条指令的密码输入是输入第一条指令获得的信息中的 password = QAJmXh4Tmotl5pI得来。
    //请根据自己的实际情况填写!
    use mysql;
    // 下面这句命令有点长,请注意。
    use mysql;
    // 下面这句命令有点长,请注意(在mysql里面运行)。

    user set;
    authentication_string=password('123456') where user='root' and Host ='localhost';
    update user set plugin="mysql_native_password"; 
    flush privileges;
    quit;
    

    这个里面root就是密码可自行修改
    3、最后重新启动mysql:

    sudo service mysql restart
    mysql -u root -p // 启动后输入已经修改好的密码:root
    

    启动:service mysqld start
    停止:service mysqld stop
    重启:service mysqld restart
    重载配置:service mysqld reload
    有些系统MySQL后面不要加d

    相关文章

      网友评论

        本文标题:Ubuntu18.4安装MySQL5.7

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