在VPS部署Ubuntu 14.04服务器时,MySQL执行导出文件命令,报错:

The MySQL server is running with the --secure-file-priv option so it cannot execute this statement

问题分析:只能保存在指定默认目录下

解决方案:

在my.cnf [mysqld] 组中增加配置行:

secure-file-priv  =  "/youSaveFilePath"

重启服务生效:

sudo /etc/init.d/mysql restart