ERROR 1290 (HY000): The MySQL server is running with the --secure-file-priv option 解决办法

情景
当我导入大数据量时,使用LOAD DATA INFILE进行导入,出现了错误 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 可以执行文件操作的目录。这通常出现在尝试使用 LOAD DATA INFILESELECT ... INTO OUTFILE 语句时。

问题原因
出现这个问题的原因是mysqlsecure_file_priv这个选项没有开启,或者这个选择了特定的文件路径,只有在这个路径下的文件才能导入导出mysql。

解决这个问题的方法取决于你的具体需求和 MySQL 服务器的配置:

1.检查 --secure-file-priv 的值

首先,你可以检查 --secure-file-priv 选项的值,以了解 MySQL 允许文件操作的目录。

在 MySQL 命令行中执行以下命令:

SHOW VARIABLES LIKE 'secure_file_priv';

ERROR 1290 (HY000): The MySQL server is running with the --secure-file-priv option 解决办法_第1张图片

我这里这个参数的值是NULL,说明mysql中就没有设置secure_file_priv这个选项。如果这个参数是个特定的文件路径,就说明文件只有在这个路径下才能将它导入导出到mysql。参数secure_file_priv的值及说明如下:

secure_file_priv值 说明
NULL 禁止文件的导入导出
'' (空字符串)允许所有文件的导入导出
一个特定的路径地址 只有该路径地址下的文件可以导入导出到mysql

2.修改或禁用 --secure-file-priv
如果你有权限修改 MySQL 服务器配置,可以更改 --secure-file-priv 选项的值。这通常在 MySQL 的配置文件中设置(如 my.cnf 或 my.ini)。
ERROR 1290 (HY000): The MySQL server is running with the --secure-file-priv option 解决办法_第2张图片
ERROR 1290 (HY000): The MySQL server is running with the --secure-file-priv option 解决办法_第3张图片

要禁用这个限制,可以将其设置为空:

[mysqld]
secure-file-priv=""

或者,你可以将其设置为一个适合你需求的特定目录。

更改配置后,需要重启 MySQL 服务。
ERROR 1290 (HY000): The MySQL server is running with the --secure-file-priv option 解决办法_第4张图片
ERROR 1290 (HY000): The MySQL server is running with the --secure-file-priv option 解决办法_第5张图片
重启mysql之后我们再次打开mysql,输入show variables like 'secure_file_priv'; 就可以看到:
ERROR 1290 (HY000): The MySQL server is running with the --secure-file-priv option 解决办法_第6张图片
这个选项的值不是null了,这个表示secure_file_priv的值为空。

对于mysql8.0的版本需要以下操作
连接时加上 --local-infile

# 连接时加上--local-infile 
mysql --local-infile -uroot -p

开启读取文件

set global local_infile=1;

然后现在就可以导入导出数据了。

注意

  • 修改数据库服务器的配置可能会影响到安全性和稳定性,应谨慎进行。
  • 在生产环境中,更改 --secure-file-priv 选项之前最好咨询数据库管理员或考虑安全因素。
  • 如果你没有权限修改服务器配置(例如在共享的托管环境中),你可能需要联系你的托管提供商或数据库管理员寻求帮助。

你可能感兴趣的:(报错解决,#,mysql,mysql,数据库)