原创大叔经验分享(96)docker启动MySQL报错
Posted Thinking in BigData
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了原创大叔经验分享(96)docker启动MySQL报错相关的知识,希望对你有一定的参考价值。
docker启动mysql反复重启,通过
# docker logs $container_id
查看日志如下:
chown: cannot read directory ‘/var/lib/mysql/‘: Permission denied
但是目录权限确认没问题,即使 chmod 777 还是报相同的错误,后来发现是selinux的问题
查看状态
# getenforce
临时禁用
# setenforce 0
永久禁用
# vi /etc/selinux/config
# 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=disable
禁用之后docker启动mysql正常
以上是关于原创大叔经验分享(96)docker启动MySQL报错的主要内容,如果未能解决你的问题,请参考以下文章
原创大叔经验分享(57)hue启动coordinator时报错