ERROR 1290 (HY000): The MySQL server is running with the --secure-file-priv option so it cannot execute this statement
背景
MySQL在进行导出全表数据的时候提示ERROR 1290
mysql> select * from student into outfile '/tmp/student.sql';
ERROR 1290 (HY000): The MySQL server is running with the --secure-file-priv option so it cannot execute this statement
原因
出现这个问题的原因是mysql的secure_file_prive这个选项没有开启,或者这个选择了特定的文件路径,只有在这个文件路径下的文件才能导入导出mysql
解决方法
首先在mysql环境下查询secure_file_priv参数。
mysql> show variables like 'secure-file-priv';
Empty set (0.02 sec)
参数secure_file_priv的值及含义如下:
secure_file_priv值 | 含义 |
---|---|
NULL | 禁止文件的导入导出 |
‘’ | (空字符串)允许所有文件的导入导出 |
一个特定的路径地址 | 只有该路径地址下的文件可以导入导出到mysql |
在my.cnf配置文件里面添加secure_file_prive参数文章来源:https://www.toymoban.com/news/detail-691652.html
[root@mysql conf]# more my.cnf |grep secure_file_priv
secure_file_priv = ''
然后重启mysql服务后进行导出验证文章来源地址https://www.toymoban.com/news/detail-691652.html
mysql> select * from student into outfile '/tmp/student.sql';
Query OK, 0 rows affected (0.00 sec)
到了这里,关于ERROR 1290 (HY000): The MySQL server is running with the --secure-file-priv option so it cannot exec的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!