Mysqlimport: Error: 13, Can ''tgetstatof solution _ MySQL

Source: Internet
Author: User
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

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.