Solution to secure-file-priv problem when exporting MySQL data

Solution to secure-file-priv problem when exporting MySQL data

ERROR 1290 (HY000) : The MySQL server is running with the –secure-file-priv option so it cannot execute this statement.

I believe that most students who perform MySQL data export operations for the first time will encounter the above errors. As for why this error occurs, the reason is very simple: we don't know where the default export directory of MySQL is, and we don't even know that MySQL has restrictions on the export directory of data. This is actually normal, because it is impossible for us to know everything. As long as we can find the correct solution and remember it after encountering a problem, it is enough! Learning is a process of continuous accumulation.

Next, let's take a look at how to solve this problem: After we install MySQL, a configuration file named my.ini will be automatically generated. This file records all the default configurations of MySQL, such as port number, default character set, default storage engine, and so on. This configuration file is located in the hidden folder ProgramData. For details on how to find this hidden folder, please refer to the detailed method for viewing the storage location of MySQL data files.

In addition, we can also view the current value of secure-file-priv through the command:

show variables like '%secure%';

Execute the above command to test:

6

As shown in the figure above, the secure-file-priv value I set is D:/CoderLife/testMySQL, and the default value of MySQL is:

secure-file-priv="C:/ProgramData/MySQL/MySQL Server 5.7/Uploads"

We can view and modify it by opening the my.ini configuration file:

7

As shown in the figure above, I commented out the default value of MySQL and changed it to my own specified path. In fact, after we modify the contents of this configuration file, such as changing the default value of secure-file-priv, we must shut down MySQL and restart it to make it take effect. Here, we need to pay attention to the following: shutting down MySQL does not mean simply exiting MySQL with the exit command or closing the MySQL window, but shutting down the MySQL service and then restarting the service . As for how to start and stop the MySQL service, please refer to the detailed description of the MySQL database crash after entering the password and the solution.

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • MySQL online log library migration example
  • How to clean up data in MySQL online database
  • How to create a table in mysql and add field comments
  • Optimized implementation of count() for large MySQL tables
  • Introduction to the use of MySQL source command
  • Causes and solutions for MySQL too many connections error
  • Solve the problem of secure_file_priv null

<<:  Solution to the problem that the virtual machine Ubuntu 16.04 cannot connect to the Internet

>>:  Solution to the problem that Ubuntu cannot connect to the Internet in the virtual machine

Recommend

Write a mysql data backup script using shell

Ideas It's actually very simple Write a shell...

Solution to the long delay of MySQL database master-slave replication

Preface The delay of MySQL master-slave replicati...

Detailed Tutorial on Installing VirtualBox 6.0 on CentOS 8 / RHEL 8

VirtualBox is a free and open source virtualizati...

About CSS floating and canceling floating

Definition of Float Sets the element out of the n...

Specific use of Node.js package manager npm

Table of contents Purpose npm init and package.js...

How to configure ssh to log in to Linux using git bash

1. First, generate the public key and private key...

Introduction to the use of several special attribute tags in HTML

The following attributes are not very compatible w...

HTML tag dl dt dd usage instructions

Basic structure: Copy code The code is as follows:...

How to use Volume to transfer files between host and Docker container

I have previously written an article about file t...

nginx automatically generates configuration files in docker container

When a company builds Docker automated deployment...

Mysql tree-structured database table design

Table of contents Preface 1. Basic Data 2. Inheri...