使用docker run命令时启动 mysql8.0镜像时失败,
报错信息如下:
[ERROR] [MY-010095] [Server] Failed to access directory for --secure-file-priv. Please make sure that directory exists and is accessible by MySQL Server. Supplied value : /var/lib/mysql-files
原因:MYSQL新特性secure_file_priv,对读写文件的限制,secure-file-priv参数是用来限制LOAD DATA, SELECT … OUTFILE, and LOAD_FILE()传到哪个指定目录的。
解决办法:
linux:
修改my.cnf 在[mysqld]内加入secure_file_priv= MYSQL新特性secure_file_priv对读写文件的影响
然后重启mysql,再查询secure_file_priv
windows:文章来源:https://www.toymoban.com/news/detail-622963.html
修改my.ini 在[mysqld]内加入secure_file_priv=文章来源地址https://www.toymoban.com/news/detail-622963.html
到了这里,关于docker 容器启动 mysql8.0失败的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!