| 本帖最后由 super 于 2022-12-10 21:33 编辑 
 
 登陆甲骨文后台打开实例一、Ubuntu系统找到子网点击进去
 
  点击进去安全组
 
  修改安全组,为图描述选项随意!
 
  1、开放所有端口 复制代码iptables -P INPUT ACCEPT
iptables -P FORWARD ACCEPT
iptables -P OUTPUT ACCEPT
iptables -F
2、关闭或强制删除防火墙 二、Centos系统复制代码apt-get purge netfilter-persistent && reboot
或 rm -rf /etc/iptables && reboot
1、删除多余附件
 
 复制代码systemctl stop oracle-cloud-agent
systemctl disable oracle-cloud-agent
systemctl stop oracle-cloud-agent-updater
systemctl disable oracle-cloud-agent-updater
 
 2、停止firewall并禁止自启动 复制代码systemctl stop firewalld.service
systemctl disable firewalld.service
 
 |