当前位置:   article > 正文

ERROR 1290 (HY000): The MySQL server is running with the --secure-file-priv option so it cannot exec

ERROR 1290 (HY000): The MySQL server is running with the --secure-file-priv option so it cannot exec

目录

介绍

查看secure_file_priv值

修改secure_file_priv值

1、my.ini或my.conf文件路径

2、修改方式:

3、重启数据库


mysql配置secure_file_priv(linux)

ERROR 1290 (HY000): The MySQL server is running with the --secure-file-priv option so it cannot exec

介绍

secure_file_priv 配置项控制LOAD DATA, SELECT …OUTFILE, LOAD_FILE()的使用权限

查看secure_file_priv值

1、可以在数据库中使用show variables like 'secure_file_priv'查看配置参数值。

  1. show variables like 'secure_file_priv';
  2. secure-file-priv的值有3种情况:
  3. secure_file_priv=null -- 默认值为null,限制mysql,禁止导入导出文件
  4. secure_file_priv="" -- 表示不限制路径,允许mysql 导入导出文件
  5. secure_file_priv="D:/path" -- 指定路径,表示只允许在该路径目录下导入导出文件(这里的路径值可以自己设置)

secure_file_priv 不建议设置为空值,不安全。

修改secure_file_priv值

1、my.ini或my.conf文件路径

  • secure_file_priv不能使用set global 方式修改,需要在my.ini或my.conf配置文件中修改,重启mysql服务后生效。
  • my.ini或my.conf所在目录(Linux):
  1. /etc/my.conf
  2. # 或
  3. /etc/mysql/my.conf

我这里的文件名叫:my.cnf

2、修改方式:

  1. [mysqld]
  2. secure_file_priv="" 

⚠️⚠️⚠️⚠️: 

  • 必须写在[mysqld]段落中
  • 如果是公司服务器,权限比较高的话通过这个命令进入编辑模式:sudo vi my.cnf
  • 直接vi mysql.cnf进入可能会提示 是只读文件

3、重启数据库

  1. sudo service mysql stop # 停止
  2. sudo service mysql start # 启动
  3. # 或者
  4. sudo systemctl restart mysqld # 重启

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

闽ICP备14008679号