使用MySQL导出文件时,提示如下错误:
The MySQL server is running with the --secure-file-priv option so it cannot execute this statement
这一错误与MySQL设置的权限有关,
使用show variables like '%secure%';
查看 secure-file-priv 当前的值是什么
导出的数据必须是这个值的指定路径才可以导出,默认有可能是NULL就代表禁止导出,这样的话, 无论有无路径我们都可以设置一个自己想要导出的路径
在mysql安装路径下的my.ini文件,设置一下secure-file-priv 的路径
重启下MySQL就OK了
网友评论