Oracle初始配置:

1、设置允许root口令登陆:

获取管理员权限

1
sudo -i

修改密码

1
passwd root

设置允许使用root用户登录

1
sed -i 's/^#\?PermitRootLogin.*/PermitRootLogin yes/g' /etc/ssh/sshd_config

设置启动密码认证

1
sed -i 's/^#\?PasswordAuthentication.*/PasswordAuthentication yes/g'/etc/ssh/sshd_config

重启sshd服务

1
service sshd restart

2、安装系统相关依赖 #centos系统

1
2
yum update -y                                                                                              
yum update -y && yum install curl -y

#ubuntu系统

1
2
apt update -y
apt-get update -y && apt-get install curl -y

3、删除、关闭、打开各自系统的无用附件、防火墙、端口及规则

Centos系统:

删除多余附件

1
2
3
4
systemctl stop oracle-cloud-agent
systemctl disable oracle-cloud-agent
systemctl stop oracle-cloud-agent-updater
systemctl disable oracle-cloud-agent-updater

停止 firewall

1
systemctl stop firewalld.service

禁止 firewall 开机启动

1
systemctl disable firewalld.service

关闭selinux

1
vi /etc/selinux/config
1
SELINUX=ENFORING修改成SELINUX=DISABLED

保存好配置后重启

1
reboot

Ubuntu系统 iptables开放所有端口

1
2
3
4
iptables -P INPUT ACCEPT
iptables -P FORWARD ACCEPT
iptables -P OUTPUT ACCEPT
iptables -F

Ubuntu 镜像默认设置了 Iptable 规则,关闭它

1
2
apt-get purge netfilter-persistent -y
reboot

或者强制删除

1
rm -rf /etc/iptables && reboot

iptables开启制定端口:

1
2
3
4
5
iptables -I INPUT -p tcp --dport 80 -j ACCEPT

netfilter-persistent save

iptables-save