The MySQL server is running with the --secure-file-priv option so it cannot execute

亡梦爱人 提交于 2019-12-02 22:10:43

报错内容:The MySQL server is running with the --secure-file-pri option so it cannot execute this.

报错原因:mysql文件的导入和导出路径有默认的设置,即 secure-file-priv,当传入或传出的csv文件路径与默认的路径冲突时就会报错。

解决办法:

    打开my.cnf文件:vim /etc/my.cnf

    

 

 

      在my.cnf 文件中添加一行内容:secure-file-priv=""

    重启mysql:service mysqld restart

    进入mysql:mysql -uroot -p

    输入密码:********

    查看secure-file-priv设置:show variables like '%secure%'

    此时显示如下,secure_file_priv 的值为空:

    

 

     表示已修改成功。

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!