时间:2021-07-01 10:21:17 帮助过:3人阅读
主要是5.7的很多操作和以前版本不一样,所以踩了很多坑。
my.cnf
里找到参考:https://www.jianshu.com/p/93fa9de59ac1
最终发现 mysql5.7的配置文件的结构是:
.
├── conf.d
│ ├── mysql.cnf
│ └── mysqldump.cnf
├── debian.cnf
├── debian-start
├── my.cnf -> /etc/alternatives/my.cnf
├── my.cnf.fallback
├── mysql.cnf
└── mysql.conf.d
├── mysqld.cnf
└── mysqld_safe_syslog.cnf
在 mysqld.cnf
文件中,有这个 bind-address
配置。
改变
bind-address = 127.0.0.1
为
bind-address = 0.0.0.0
update mysql.user set authentication_string=password(‘123qwe‘) where user=‘root‘;
flush privileges;
quit;
service mysql restart
MySQL5.7远程连接和增加密码
标签:nec www sql date star mysq restart fine 版本