MySQL导出数据到文件 ERROR 1290 (HY000): The MySQL server is running with the --secure-file-priv option

在做mysql 大批量导出数据的时候,所遇到的问题如下:

ERROR 1290 (HY000): The MySQL server is running with the –secure-file-priv option so it cannot execute this statement

这里写图片描述

mysql 默认对导出的目录有权限限制,也就是说使用命令行进行导出的时候,需要指定目录进行操作;

解决方法:

查询mysql 的secure_file_priv 值配置的是什么,使用命令行: show global variables like ‘%secure%’;
MySQL导出数据到文件 ERROR 1290 (HY000): The MySQL server is running with the --secure-file-priv option_第1张图片

当secure_file_priv的值为null ,表示限制mysqld 不允许导入|导出
当secure_file_priv的值为/tmp/ ,表示限制mysqld 的导入|导出只能发生在/tmp/目录下
当secure_file_priv的值没有具体值时,表示不对mysqld 的导入|导出做限制

解决问题:
windows下:修改my.ini 在[mysqld]内加入secure_file_priv =’ ‘

然后重启MySQL服务。重新登录即可

你可能感兴趣的:(MySQL)