show variables like '%secure%'; +--------------------------+-----------------------+ | Variable_name      &nbs..."/>
溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

MySQL 報錯 ERROR 1290 (HY000): running with the --secure-file-priv

發(fā)布時間:2020-08-10 21:51:36 來源:ITPUB博客 閱讀:135 作者:不一樣的天空w 欄目:MySQL數(shù)據(jù)庫

mysql> show 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.27 sec)


mysql> select * from test into outfile '/var/lib/mysql-files/test_out.txt' fields terminated by ',' optionally enclo

sed by '"';

Query OK, 5 rows affected (0.21 sec)


secure_file_priv參數(shù)說明:

這個參數(shù)用來限制數(shù)據(jù)導入和導出操作的效果,例如執(zhí)行LOAD DATA、SELECT ... INTO OUTFILE語句和LOAD_FILE()函數(shù)。這些操作需要用戶具有FILE權限。

1. 如果這個參數(shù)為空,這個變量沒有效果;

2. 如果這個參數(shù)設為一個目錄名,MySQL服務只允許在這個目錄中執(zhí)行文件的導入和導出操作。這個目錄必須存在,MyS

QL服務不會創(chuàng)建它;

3. 如果這個參數(shù)為NULL,MySQL服務會禁止導入和導出操作。這個參數(shù)在MySQL 5.7.6版本引入


secure_file_priv may be set as follows:

If empty, the variable has no effect. This is not a secure setting.

If set to the name of a directory, the server limits import and export operations to work only with files in that dire

ctory. The directory must exist; the server will not create it.

If set to NULL, the server disables import and export operations.


向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內容。

AI