SyntaxFix
Write A Post
Hire A Developer
Questions
🔍
[mysql] LOAD DATA INFILE Error Code : 13
Home
Question
LOAD DATA INFILE Error Code : 13
GRANT ALL PRIVILEGES ON db_name.* TO 'db_user'@'localhost';
GRANT FILE on .* to 'db_user'@'localhost' IDENTIFIED BY 'password';
FLUSH PRIVILEGES;
SET GLOBAL local_infile = 1;
Variable in the config of the MYSQL "secure-file-priv" must be empty line!!!
Examples related to
mysql
•
Implement specialization in ER diagram
•
How to post query parameters with Axios?
•
PHP with MySQL 8.0+ error: The server requested authentication method unknown to the client
•
Loading class `com.mysql.jdbc.Driver'. This is deprecated. The new driver class is `com.mysql.cj.jdbc.Driver'
•
phpMyAdmin - Error > Incorrect format parameter?
•
Authentication plugin 'caching_sha2_password' is not supported
•
How to resolve Unable to load authentication plugin 'caching_sha2_password' issue
•
Connection Java-MySql : Public Key Retrieval is not allowed
•
How to grant all privileges to root user in MySQL 8.0
•
MySQL 8.0 - Client does not support authentication protocol requested by server; consider upgrading MySQL client
Examples related to
file-io
•
Python, Pandas : write content of DataFrame into text File
•
Saving response from Requests to file
•
How to while loop until the end of a file in Python without checking for empty line?
•
Getting "java.nio.file.AccessDeniedException" when trying to write to a folder
•
How do I add a resources folder to my Java project in Eclipse
•
Read and write a String from text file
•
Python Pandas: How to read only first n rows of CSV files in?
•
Open files in 'rt' and 'wt' modes
•
How to write to a file without overwriting current contents?
•
Write objects into file with Node.js