linuxoracle防火牆
A. 如何查看linux的防火牆設置
一般來說,Linux 系統下的防火牆配置使用 iptables 的比較多。你可以到 /etc/iptables 下面查看一下具體的 in、out、forward等的防火牆設置規則。
B. centos7安裝oracle11g需要關閉防火牆嗎
// 注釋 # root用戶 $oracle用戶
1. 關閉安全措施
# chkconfig iptables off // 永久關閉防火牆
# serviceiptables stop // 暫時關閉防火牆,重啟系統後會自動打開
# sed -i "s/SELINUX=enforcing/SELINUX=disabled/" /etc/selinux/config // 關閉Selinux
2. 驗證硬體
2.1 內存:
要求:內存最小1G,推薦2G或者更高。
查看命令:# grep MemTotal /proc/meminfo
2.2 Swap:
要求:
RAW
Swap
1G至2G 1.5倍
2G至16G 同RAW相等
16G以上 16G
查看命令:# grep SwapTotal /proc/meminfo
# free
3. 驗證軟體
3.1 操作系統
Asianux Server 3 SP2
Oracle Linux 4 Update 7
Oracle Linux 5 Update 2 (with Red Hat Compatible Kernel)
Oracle Linux 5 Update 5
Oracle Linux 6
Oracle Linux 6 (with Red Hat Compatible Kernel)
Red Hat Enterprise Linux 4 Update 7
Red Hat Enterprise Linux 5 Update 2
Red Hat Enterprise Linux 5 Update 5 (with the Oracle Unbreakable Enterprise Kernel for Linux)
Red Hat Enterprise Linux 6
Red Hat Enterprise Linux 6 (with the Oracle Unbreakable Enterprise Kernel for Linux)
SUSE Linux Enterprise Server 10 SP2
SUSE Linux Enterprise Server 11
CentOS7本文按照Red Hat Enterprise Linux 6來配置。
# cat /proc/version // 查看版本
3.2 內核
On Oracle Linux 4 and Red Hat Enterprise Linux 4 2.6.9 or later
On Oracle Linux 5 Update 2 with Red Hat Compatible Kernel 2.6.18 or later
On Oracle Linux 5 Update 5 with Red Hat Compatible Kernel 2.6.18 or later
On Oracle Linux 5 Update 5 with Unbreakable Enterprise Kernel 2.6.32-100.0.19 or later
On Oracle Linux 6 2.6.32-100.28.5.el6.x86_64 or later
On Oracle Linux 6 with Red Hat Compatible Kernel 2.6.32-71.el6.x86_64 or later
On Red Hat Enterprise Linux 5 Update 2 2.6.18 or later
On Red Hat Enterprise Linux 5 Update 5 2.6.18 or later
On Red Hat Enterprise Linux 5 Update 5 with Unbreakable Enterprise Kernel 2.6.32 or later
On Red Hat Enterprise Linux 6 2.6.32-71.el6.x86_64 or later
On Red Hat Enterprise Linux 6 with Unbreakable Enterprise Kernel 2.6.32-100.28.5.el6.x86_64 or later
On Asianux Server 3 2.6.18 or later
On SUSE Linux Enterprise Server 10 2.6.16.21 or later
On SUSE Linux Enterprise Server 11 2.6.27.19 or later
# uname-r
C. linux 如何查看防火牆是否開啟
詳細步驟如下:
1、打開Linux系統進入桌面,點擊上方菜單欄處【系統】選項;
D. 怎麼查看linux防火牆命令行
案
service iptables status可以查看到iptables服務的當前狀態。
但是即使服務運行了,防火牆也不一定起作用,你還得看防火牆規則的設置 iptables -L
在此說一下關於啟動和關閉防火牆的命令:
1) 重啟後生效
開啟: chkconfig iptables on
關閉: chkconfig iptables off
2) 即時生效,重啟後失效
開啟: service iptables start
關閉: service iptables stop
E. 如何為 Oracle Linux 或 Red Hat Enterprise Linux 禁用防火牆
①-service iptables stop
###手動禁用
②-service iptables off
###禁止開機自啟動
③-禁用selinux
setenforce 0 ###臨時禁用
vi /etc/sysconfig/selinux ###修改文件將SELINUX=enforcing改為SELINUX=disabled
F. 如何配置linux下的防火牆
准備裝有Linux系統的電腦。
1.在linux系統裡面找到並打開編輯配置防火牆的文件,執行命令:
vi /etc/sysconfig/iptables。
(6)linuxoracle防火牆擴展閱讀:
查看防火牆狀態:
[root@cluster1 ~]# service iptables status
iptables:未運行防火牆。
開啟防火牆:
[root@cluster1 ~]# service iptables start
關閉防火牆:
[root@cluster1 ~]# service iptables stop
G. 查看linux防火牆狀態命令
查看防火牆狀態:
[root@centos6 ~]# service iptables status
iptables:未運行防火牆。
開啟防火牆:
[root@centos6 ~]# service iptables start
關閉防火牆:
[root@centos6 ~]# service iptables stop
H. 只有將linux防火牆關閉後,其他電腦上的oracle客戶端才能連接到linux上的oracle資料庫伺服器,安全嗎
不用完全關閉,只需要在防火牆中打開 oracle 對應的埠即可。
你可以搜索 oracle linux 防火牆 ,即可找到不同 linux 下的定製方法。
I. 只有將linux防火牆關閉後,其他電腦上的oracle客戶端才能連接到linux上的oracle資料庫伺服器,安全嗎
不用完全關閉,只需要在防火牆中打開
oracle
對應的埠即可。
你可以搜索
oracle
linux
防火牆
,即可找到不同
linux
下的定製方法。
J. oracle 下linux red hat 防火牆的配置與客戶端的連接問題 我的etc/sysc
這個可能是防火牆的默認規則擋住了,你可以看看iptables -L,看看目前生效的條目,我想應該是前面的默認規則擋住了,防火牆這東西是逐條匹配的