這篇文章主要講解了“CentOS8禁用SELinux的教程”,文中的講解內(nèi)容簡(jiǎn)單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來(lái)研究和學(xué)習(xí)“CentOS8禁用SELinux的教程”吧!
“只有客戶發(fā)展了,才有我們的生存與發(fā)展!”這是創(chuàng)新互聯(lián)公司的服務(wù)宗旨!把網(wǎng)站當(dāng)作互聯(lián)網(wǎng)產(chǎn)品,產(chǎn)品思維更注重全局思維、需求分析和迭代思維,在網(wǎng)站建設(shè)中就是為了建設(shè)一個(gè)不僅審美在線,而且實(shí)用性極高的網(wǎng)站。創(chuàng)新互聯(lián)對(duì)網(wǎng)站建設(shè)、做網(wǎng)站、網(wǎng)站制作、網(wǎng)站開發(fā)、網(wǎng)頁(yè)設(shè)計(jì)、網(wǎng)站優(yōu)化、網(wǎng)絡(luò)推廣、探索永無(wú)止境。如何在CentOS 8上暫時(shí)禁用SELinux
在開始在CentOS 8上禁用SELinux之前,請(qǐng)務(wù)必先檢查SELinux的狀態(tài)。
為此,請(qǐng)運(yùn)行以下 命令:
[root@localhost www.linuxidc.com]# sestatus SELinux status: enabled SELinuxfs mount: /sys/fs/selinux SELinux root directory: /etc/selinux Loaded policy name: targeted Current mode: enforcing Mode from config file: enforcing Policy MLS status: enabled Policy deny_unknown status: allowed Memory protection checking: actual (secure) Max kernel policy version: 31
這表明SELinux已啟動(dòng)并正在運(yùn)行。
要暫時(shí)禁用SELinux,請(qǐng)運(yùn)行 命令。
# setenforce 0
另外,您可以運(yùn)行命令。
# setenforce Permissive
這些命令中的任何一個(gè)都將暫時(shí)禁用SELinux,直到下次重啟為止。
如何在CentOS 8上永久禁用SELinux
現(xiàn)在,讓我們看看如何永久禁用SELinux。 SElinux的配置文件位于 /etc/selinux/config。 因此,我們需要對(duì)該文件進(jìn)行一些修改。
# vi /etc/selinux/config
將SELinux屬性設(shè)置為Disabled,如下所示:
# 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.SELINUX=disabled# SELINUXTYPE= can take one of these three values: # targeted - Targeted processes are protected, # minimum - Modification of targeted policy. Only selected processes are protected. # mls - Multi Level Security protection. SELINUXTYPE=targeted
保存并退出配置文件,然后使用以下任何命令重新啟動(dòng)CentOS 8 Linux系統(tǒng)。
# reboot # init 0 # telinit 0
現(xiàn)在,使用命令檢查SELinux的狀態(tài)。
[linuxidc@localhost www.linuxidc.com]$ sestatus SELinux status: disabled
SELinux是CentOS 8上非常關(guān)鍵的功能,有助于限制未經(jīng)授權(quán)的用戶訪問(wèn)系統(tǒng)上的某些服務(wù)。
感謝各位的閱讀,以上就是“CentOS8禁用SELinux的教程”的內(nèi)容了,經(jīng)過(guò)本文的學(xué)習(xí)后,相信大家對(duì)CentOS8禁用SELinux的教程這一問(wèn)題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是創(chuàng)新互聯(lián),小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!