linux日常使用问题2
2018-08-16 本文已影响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/)