码迷,mamicode.com
首页 > 数据库 > 详细

MYSQL新特性secure_file_priv读写文件 outFile导出数据

时间:2020-02-09 00:39:19      阅读:107      评论:0      收藏:0      [点我收藏+]

标签:查看   secure   state   his   variables   ann   value   windows   name   

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

secure-file-priv特性

secure-file-priv参数是用来限制LOAD DATA, SELECT … OUTFILE, and LOAD_FILE()传到哪个指定目录的。

  • ure_file_priv的值为null ,表示限制mysqld 不允许导入|导出
  • 当secure_file_priv的值为/tmp/ ,表示限制mysqld 的导入|导出只能发生在/tmp/目录下
  • 当secure_file_priv的值没有具体值时,表示不对mysqld 的导入|导出做限制
    如何查看secure-file-priv参数的值:
    show global variables like ‘%secure%‘;
    没有导出权限:
    mysql> show global variables like ‘%secure%‘;
    +------------------+-------+
    | Variable_name    | Value |
    +------------------+-------+
    | secure_auth      | OFF   |
    | secure_file_priv |       |
    +------------------+-------+
    2 rows in set (0.00 sec)

    有导出权限,导出路径需在/var/lib/mysql-files/下:

    mysql> show global variables like ‘%secure%‘;
    +--------------------------+-----------------------+
    | Variable_name            | Value                 |
    +--------------------------+-----------------------+
    | require_secure_transport | OFF                   |
    | secure_auth              | ON                    |
    | secure_file_priv         | /var/lib/mysql-files/ |
    +--------------------------+-----------------------+
    3 rows in set (0.09 sec)

    MYSQL新特性secure_file_priv对读写文件的影响
    此开关默认为NULL,即不允许导入导出。

解决问题:
windows下:

修改my.ini 在[mysqld]内加入secure_file_priv=

linux下:

修改my.cnf 在[mysqld]内加入secure_file_priv=
MYSQL新特性secure_file_priv对读写文件的影响
然后重启mysql,再查询secure_file_priv

MYSQL新特性secure_file_priv读写文件 outFile导出数据

标签:查看   secure   state   his   variables   ann   value   windows   name   

原文地址:https://blog.51cto.com/7567511/2469798

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!