MySQL数据导出时出现如下错误: ERROR 1290 (HY000): The MySQL server is running with the --secure-file-priv option so it cannot execute this statement

mysql> select * from db3.usertab into outfile "/mysqldata/user2.txt";
ERROR 1290 (HY000): The MySQL server is running with the --secure-file-priv option so it cannot execute this statement

解决办法:

首先:
用以下mysql语句 查看secure_file_priv 对应的值:

mysql> show global variables like '%secure_file_priv%';
+------------------+-----------------------+
| Variable_name | Value |
+------------------+-----------------------+
| secure_file_priv | /var/lib/mysql-files/ |
+------------------+-----------------------+
1 row in set (0.00 sec)

按value对应的路径导出即可解决

mysql> select * from db3.usertab into outfile "/var/lib/mysql-files/user2.txt";
Query OK, 47 rows affected (0.00 sec)

说明讲解:

查看 secure_file_priv 的值,默认为NULL,表示限制不能导入导出。

查看官方文档,secure_file_priv参数用于限制LOAD DATA, SELECT …OUTFILE, LOAD_FILE()传到哪个指定目录。

secure_file_priv 为 NULL 时,表示限制mysqld不允许导入或导出。
secure_file_priv 为 /tmp 时,表示限制mysqld只能在/tmp目录中执行导入导出,其他目录不能执行。
secure_file_priv 没有值时,表示不限制mysqld在任意目录的导入导出。
又因为 secure_file_priv 参数是只读参数,不能使用set global命令修改。

更改配置文件

打开my.cnf 或 my.ini,加入以下语句后重启mysql。

secure_file_priv=''



posted @ 2021-06-21 17:00  落樰兂痕  阅读(204)  评论(0编辑  收藏  举报