Oracle初始配置
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 | yum update -y |
#ubuntu系统
1 | apt update -y |
3、删除、关闭、打开各自系统的无用附件、防火墙、端口及规则
Centos系统:
删除多余附件
1 | systemctl stop oracle-cloud-agent |
停止 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 | iptables -P INPUT ACCEPT |
Ubuntu 镜像默认设置了 Iptable 规则,关闭它
1 | apt-get purge netfilter-persistent -y |
或者强制删除
1 | rm -rf /etc/iptables && reboot |
iptables开启制定端口:
1 | iptables -I INPUT -p tcp --dport 80 -j ACCEPT |
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来源 爱折腾的菜鸟!
评论