当前位置:   article > 正文

【Mysql】into outfile报错的问题

into outfile语法报错
明明有select 权限却报错
mysql> select * from server into outfile '/tmp/tt.txt';
ERROR 1045 (28000): Access denied for user 'chenliang'@'%' (using password: YES)

百度后需要给file权限
mysql>  grant file on *.* to chenliang;
Query OK, 0 rows affected (0.00 sec)


再次导还是报错
mysql> select * from server into outfile '/tmp/tt.txt';
ERROR 1290 (HY000): The MySQL server is running with the --secure-file-priv option so it cannot execute this statement
--这次错误不一样了,这个错误是一个参数导致的


配置文件加入后重启
secure_file_priv=''  


导出成功
mysql> select * from server into outfile '/tmp/tt.txt';
Query OK, 27 rows affected (0.00 sec)


这个参数我以前在5.6.24版本都没调整过,可能默认值就是‘’,高版本默认值改成null,所以一定要注意

来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/29096438/viewspace-2140122/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/29096438/viewspace-2140122/

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/569959
推荐阅读
相关标签
  

闽ICP备14008679号