如果遇到到错误:
1290 - The MySQL server is running with the --secure-file-priv option so it cannot execute this stat...
这是因为没有设置secure-file-priv变量或者此变量路径非查询输出路径 我们配置一下MySQL的配置文件即可
不知道配置文件位置,可以参考这篇文章:查看MySQL文件位置和加载顺序
打开配置文件后,找到 [mysqld]
,在其下添加或修改如下内容
secure-file-priv='你要输出的文件路径'
例如:
secure-file-priv='/tmp'
最后,重启MySQL!!!
mac:mysql.server restart
ubuntu: service mysql restart
windows: 一般右下角有个小图标可以重启,不行就杀掉进程重新打开