Mysqlimport: Error: 13, Can bitsCN.com
Mysqlimport: Error: 13, Can't get stat of solution
This article describes how to solve the problem of mysqlimport: Error: 13, Can't get stat of in detail for your reference.
When I read the mysql User Manual and saw the mysqlimport command for backup recovery, a strange problem occurred after the operation.
Java code
Root @ zhou:/usr/local/mysql # mysqlimport-uroot-p123-h127.0.0.1-P3306 test backup/chen. SQL
Mysqlimport: Error: 13, Can't get stat of '/usr/local/mysql/data/backup/chen. SQL' (Errcode: 2), when using table: chen
Here, perror is used to query the cause of this error:
Java code
Root @ zhou:/usr/local/mysql # perror 13
Root @ zhou:/usr/local/mysql # ll
OS error code 13: Permission denied
But here I checked my permissions, and there is no problem. My backup files are in the backup document.
Java code
Total usage 120
Drwxr-xr-x 17 root mysql 4096 January 10 19:02 ./
Drwxr-xr-x 22 root 4096 January 8 11:34 ../
Drwxr-xr-x 2 mysql 4096 January 10 17:30 backup/
Drwxr-xr-x 2 root mysql 4096 January 8 10:39 bin/
Solution:
First, google and Baidu will check whether the problem can be solved. Then I am using load data infile to see if this problem will also occur (the load command here is the same command ).
Google and Baidu didn't find the answer they wanted, but I found no problem during the load data infile operation. so the conclusion here should not be the Permission problem:
M
Java code
Ysql (root @ localhost: test)> load data infile '/usr/local/mysql/backup/chen. SQL 'into table chen;
Query OK, 6 rows affected (0.07 sec)
Records: 6 Deleted: 0 Skipped: 0 Warnings: 0
Finally, the problem of querying this command through man will find that the -- local command is a problem.
Java code
Root @ zhou:/usr/local/mysql # mysqlimport-uroot-p123-h127.0.0.1-P3306 test backup/chen. SQL
Mysqlimport: Error: 13, Can't get stat of '/usr/local/mysql/data/backup/chen. SQL' (Errcode: 2), when using table: chen
Root @ zhou:/usr/local/mysql # mysqlimport-uroot-p123-h127.0.0.1-P3306 test backup/chen. SQL -- local
Test. chen: Records: 6 Deleted: 0 Skipped: 0 Warnings: 0
Solved the problem. here -- local:
Specify to read data files from the client computer; otherwise, read data from the server computer.
Locate the problem. -- Local
BitsCN.com