美文网首页
linux日常使用问题2

linux日常使用问题2

作者: 狗狗胖妞 | 来源:发表于2018-08-16 18:25 被阅读4次

    mysql 8.0.11授权的问题

    安装之前的版本授权方式:mysql>grant all on test.* to 'alex'@'%' identified by '123456'; 一直报错。
    解决办法:

    use mysql;
    create user 'alex'@'%' identified by '123456';
    grant all on *.* to 'alex'@'%';
    # ALTER USER 'alex'@'%' IDENTIFIED WITH mysql_native_password BY '123456';
    

    为什么 netstat 对某些服务只显示了 tcp6 监听端口

    (http://www.chengweiyang.cn/2017/03/05/why-netstat-not-showup-tcp4-socket/)

    相关文章

      网友评论

          本文标题:linux日常使用问题2

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