CentOS下徹底刪除SELinux的方法

2021-06-21 17:14:21 字數 990 閱讀 9802

selinux(security-enhanced linux)安全增強式linux,是一種強制訪問控制(mandatory access control)的實現。這這種控制下,linux有很多的操作是會被禁止或者是不成功的。之前在centos下安裝vsftpd怎樣都弄不上去。後來把selinux乾掉之後就完事了。好了,廢話少說,下面說一下徹底乾掉selinux的方法。

vim/etc/selinux/config  

開啟selinux的配置檔案,我們可以看selinux是預設開啟的:

selinux=enforcing 

所以我們要修改的就是這個了,把原來的注釋掉,自己寫上

selinux=disabled 

具體如下:

# this file controls thestate of selinux on the system.  

# selinux= can take oneof these three values:  

#       enforcing - selinux security policy isenforced.  

#       permissive - selinux prints warningsinstead of enforcing.  

#       disabled - selinux is fullydisabled.  

#selinux=enforcing  

selinux=disabled  

# selinuxtype= type ofpolicy in use. possible values are:  

#       targeted - only targeted network daemonsare protected.  

#       strict - full selinux protection.  

selinuxtype=targeted 

儲存退出,然後重啟一下就ok了。

Centos下徹底刪除oracle

1.用oracle使用者登入 如果要再次安裝,最好先做一些備份工作。包括使用者的登入指令碼,資料庫自動啟動關閉的指令碼,和listener自動啟動的指令碼。要是有可能連建立資料庫的指令碼也儲存下來 2.使用sql plus停止資料庫 oracle ora920 oracle sqlplus nolo...

Ubuntu下徹底刪除wine

系統 ubuntu16.04 解除安裝wine之後,其wine及其快捷方式還存在於系統中,並且會出現在dock中,下面是刪除方法,歡迎補充。首先是解除安裝wine 舊系統使用apt get代替apt sudo apt remove wine sudo apt autoremovewine快捷方式的殘...

Linux下徹底刪除MySQL

如果安裝的mysql一直報錯,建議徹底刪除mysql,然後重灌,重灌前一定要確保徹底刪除了以前的的mysql元件,不然新裝的mysql會報一些錯誤 檢查是否安裝了mysql元件 rpm qa grep i mysql關閉mysql服務 systemctl stop mysqld查詢mysql程序 關...