lnmp1.5 mysql数据库开启远程访问权限
sudo su # 切换为root用户模式,省的接下来操作的时候出现权限问题
mysql -u root -p # 进入mysql命令行模式,需要输入mysql root账号的密码
GRANT ALL PRIVILEGES ON *.* TO ‘root‘@‘%‘ IDENTIFIED BY ‘********‘ WITH GRANT OPTION; #设置root账号可以远程连接,******** 是root账号的密码
FLUSH PRIVILEGES
exit # 退出mysql命令行
lnmp restart # 重启lnmp
iptables -L -n --line-numbers # 查看已有的iptables规则
iptables -D INPUT 6
相关推荐
lpfvip00 2020-10-07
emmm00 2020-11-17
王艺强 2020-11-17
aydh 2020-11-12
世樹 2020-11-11
zry 2020-11-11
URML 2020-11-11
spurity 2020-11-10
yifangs 2020-10-13
Andrea0 2020-09-18
Ida 2020-09-16
ltd00 2020-09-12
tufeiax 2020-09-03
xjd0 2020-09-10
greatboylc 2020-09-10
adsadadaddadasda 2020-09-08
疯狂老司机 2020-09-08
CoderToy 2020-11-16
ribavnu 2020-11-16