Docker加载/var/lib/mysql出现Permission Denied 原因:Selinux安全权限问题

Posted HK_HUST

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Docker加载/var/lib/mysql出现Permission Denied 原因:Selinux安全权限问题相关的知识,希望对你有一定的参考价值。

问题:技术图片

解决方法:1. 自己用docker run来运行容器时, 加上 --privileged=true 即可。
2. 一劳永逸的办法:直接关闭Selinux

[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
#重启系统  

以上是关于Docker加载/var/lib/mysql出现Permission Denied 原因:Selinux安全权限问题的主要内容,如果未能解决你的问题,请参考以下文章

docker 启动mysql5.7命令

Docker 启动mysql

Docker+mysql

docker学习实践之路[第五站]mysql镜像应用

docker容器内怎么连接外部的mysql

docker安装MySQL数据库