当前位置:   article > 正文

mysqld: Can‘t read dir of ‘/etc/mysql/conf.d/‘ (Errcode: 13 - Permission denied)_mysqld: can't read dir of '/etc/mysql/conf.d/

mysqld: can't read dir of '/etc/mysql/conf.d/

在这里插入图片描述

想学习架构师构建流程请跳转:Java架构师系统架构设计

安装docker mysql:5.7版本时,出现错误:

mysqld: Can't read dir of '/etc/mysql/conf.d/' (Errcode: 13 - Permission denied)
mysqld: [ERROR] Fatal error in defaults handling. Program aborted!

ERROR: mysqld failed while attempting to check config
command was: "mysqld --verbose --help"
  • 1
  • 2
  • 3
  • 4
  • 5

原因
因为Centos7安全Selinux禁止了一些安全权限,导致mysql和mariadb在进行挂载/var/lib/mysql的时候会提示如下信息

解决方法
在docker run中加入 --privileged=true 给容器加上特定权限

docker run -id --privileged=true \
-p 3306:3306 \
--name=c_mysql \
-v $PWD/conf:/etc/mysql/conf.d \
-v $PWD/logs:/logs \
-v $PWD/data:/var/lib/mysql \
-e MYSQL_ROOT_PASSWORD=root \
mysql:5.6
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/164236
推荐阅读
相关标签
  

闽ICP备14008679号