CentOS 7.5關閉FireWall 和SELinux圖文詳解
1. 環境
2. 關閉FireWall和SELinux
2.1 FireWall
使用systemctl status firewalld檢視防火牆的狀態,如下(預設開啟)
11月 13 14:40:51 localhost.localdomain systemd[1]: Starting firewalld - dyna...
11月 13 14:40:53 localhost.localdomain systemd[1]: Started firewalld - dynam...
Hint: Some lines were ellipsized, use -l to show in full.
如果你需要使用FireWall服務(正式環境下),則需要修改它的配置,因為在預設情況下,它會攔截大多數服務請求。具體可以參考配置firewalld服務的基本操作和設定。
如果由於某些原因(比如本文只是需要Linux伺服器來搭建某些服務,不想控制防火牆只開放某些埠)等而不需要FireWall服務,則可以像下面那樣停止並禁用它。
2.2 關閉SELinux
可以用getenforce 檢視SELinux的狀態,如下(預設開啟)
//開啟狀態
Enforcing
同上,如果你想使用SELinux也可以。但是本人不想那麼麻煩,所以把SELinux也關閉了。
# This file controls the state of SELinux on the system.
# SELINUX= can take one of these three values:
# enforcing - SELinux security policy is enforced.
# permissive - SELinux prints warnings instead of enforcing.
# disabled - No SELinux policy is loaded.
// 這裡改變為disabled
SELINUX=disabled
# SELINUXTYPE= can take one of three two values:
# targeted - Targeted processes are protected,
# minimum - Modification of targeted policy. Only selected processes are protected.
# mls - Multi Level Security protection.
SELINUXTYPE=targeted
3. 一點錯誤
使用root許可權使用者操作