mysql 报错:Loading local data is disabled; this must be enabled on both the client and

mysql 报错:Loading local data is disabled; this must be enabled on both the client and,第1张

我在Docker中布置的mysql,做项目时有将本地数据导入到mysql,出现报错信息:

Loading local data is disabled; this must be enabled on both the client and

查阅资料说需要同时在 客户端 和 服务端 设置local_infile开启,最简单的办法就是直接找到my.ini文件进行修改

首先查询Mysql该配置是否开启

show global variables like 'local_infile';

如果得到如下显示 Value=OFF,则说明这是不可用的。如果得到的是 Value=ON

在mysql中输入命令set global local_infile=1;

退出mysql,再次进去,会发现value值为ON 

但此时虽然解决问题了,如果重启了就会失效,此时需要做后续 *** 作,找到配置文件my.ini或者my.cnf,进行修改,然后重启即可

 

my.ini是在Window下面的文件

Docker和Linux中的文件是叫my.cnf,文件路径在/etc/mysql/my.cnf

加上配置:

[mysql]
local_infile=ON
[client]
local_infile=ON

重启mysql,问题得以解决

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/886755.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-14
下一篇 2022-05-14

发表评论

登录后才能评论

评论列表(0条)

保存