super 发表于 2022-12-10 21:27:22

Oracle开放全部端口并关闭防火墙

本帖最后由 super 于 2022-12-10 21:33 编辑

登陆甲骨文后台打开实例
找到子网点击进去
https://tc.edunote.cn/i/2022/11/21/1649512180362637b916b09ae5.png
点击进去安全组
https://tc.edunote.cn/i/2022/11/21/1649512205495637b916ca5950.png
修改安全组,为图描述选项随意!
https://tc.edunote.cn/i/2022/11/21/1649512222363637b916e5d84a.png一、Ubuntu系统1、开放所有端口iptables -P INPUT ACCEPT
iptables -P FORWARD ACCEPT
iptables -P OUTPUT ACCEPT
iptables -F2、关闭或强制删除防火墙apt-get purge netfilter-persistent && reboot
或 rm -rf /etc/iptables && reboot二、Centos系统
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

页: [1]
查看完整版本: Oracle开放全部端口并关闭防火墙