MySQL导出数据遇到secure-file-priv问题的解决方法

December 17, 2023
测试
测试
测试
测试
2 分钟阅读

lsecure-file-priv

mysql> load data infile '/home/shop_info.txt' into table shop_info;
ERROR 1290 (HY000): The MySQL server is running with the --secure-file-priv option so it cannot execute this statement

show variables like '%secure%'; 查看信息

mysql> show variables like '%secure%';
+------------------+-----------------------+
| Variable_name    | Value                 |
+------------------+-----------------------+
| secure_auth      | ON                    |
| secure_file_priv | /var/lib/mysql-files/ |
+------------------+-----------------------+
2 rows in set (0.00 sec)

将文件mv到/var/lib/mysql-files/文件夹下,再次执行成功。

load data插入数据NULL

指定文件分割符

load data infile "/var/lib/mysql-files/shop_info.txt" into table shop_info  \
fields terminated by ',';

继续阅读

更多来自我们博客的帖子

如何安装 BuddyPress
由 测试 December 17, 2023
经过差不多一年的开发,BuddyPress 这个基于 WordPress Mu 的 SNS 插件正式版终于发布了。BuddyPress...
阅读更多
Filter如何工作
由 测试 December 17, 2023
在 web.xml...
阅读更多
如何理解CGAffineTransform
由 测试 December 17, 2023
CGAffineTransform A structure for holding an affine transformation matrix. ...
阅读更多