【解决】MySQL导入数据出现的问题:Error Code: 1290. The MySQL server is running with the --secure-file-priv option

问题描述:导入数据时,出现这个错误:

Error Code: 1290. The MySQL server is running with the --secure-file-priv option so it cannot execute this statement

解决办法:

在MySQL安装路径找到my.ini文件,

(一般是C盘或D盘吧,看你们自己的安装情况,我的如下:)

D:\ProgramData\MySQL\MySQL Server 5.7\my.ini

找到这串字“secure_file_priv”,设它没有值:

secure_file_priv=

解释一下,

secure_file_priv 为 null 时,表示限制mysqld不允许导入或导出。
secure_file_priv 为 C:\temp 时,表示限制mysqld只能在C:\temp目录中执行导入导出,其他目录不能执行。
secure_file_priv 没有值时,表示可在任意目录导入导出。

 

然后重启MySQL服务,如下操作:

在任务栏搜索框输入“services.msc”,找到MySQL,然后重启一下,OK。

 

 

 

你可能感兴趣的:(DataBase)