Docker加載/var/lib/mysql出現Permission Denied 緣由:Selinux安全權限問題

問題:Selinux安全權限問題linux

解決方法:1. 本身用docker run來運行容器時, 加上 --privileged=true 便可。
2. 一勞永逸的辦法:直接關閉Selinuxdocker

[root@localhost ~]# getenforce
Enforcing
[root@localhost ~]# setenforce 0
[root@localhost ~]# getenforce
Permissive
[root@localhost ~]# systemctl restart docker
[root@localhost ~]# vi /etc/selinux/config
#修改 SELINUX=disabled
[root@localhost ~]# init 6
#重啓系統
相關文章
相關標籤/搜索