Solve the problem of secure_file_priv null

Solve the problem of secure_file_priv null

Add secure_file_priv = ' '; then run cmd as an administrator,

Enter mysql/bin to stop the mysql service net stop mysql, and restart the mysql service net start mysql.

log in

mysql mysql -u root -p enter password: password

Run the show variables like '%secure%'; command to view the value of secure_file_priv .

Note: secure_file_priv is used to set the location where load data can be imported and exported.

Supplement: The problem that secure_file_priv does not take effect in the MYSQL configuration file my.ini.

MYSQL modifies the export file address settings into three types

secure_file_priv is NULL to prohibit the export of files secure_file_priv=""

secure_file_priv specifies the address to restrict the export address to this address only secure_file_priv=“D:/”

secure_file_priv is empty and can be exported to any file secure_file_priv=

This configuration can only be modified in my.ini.

Previously, I encountered a situation where changing secure_file_priv= in my.ini to various formats did not work.

I was entangled for a night, and after researching, I found the solution

Administrator CMD enters the DOS command interface

Type mysql --help to view the limited folders where mysql reads files.

Move the modified my.ini file to one of the folders.

net stop mysql,net start mysql restart service, after logging in show variables like “%secure%”; you can see success

Supplement: Solve the problem that the MySQL configuration file my.ini does not work

First you need to know which my.ini you are running.

Most my.ini files are located in the root directory of the MySQL installation directory.

Check which folder's configuration file is started under your MySQL service in the service

As shown in the figure, go to the correct directory to find the run file.

There are two solutions after finding it:

I recommend the second one, which is simple and rough.

1. Change the path in the above picture to your own my.ini path. (You should modify it in the registry)

2. Find the file directly in the directory in the picture above, copy your configuration file to the directory or modify it directly in it.

(The ProgramData folder is hidden by default, just check Show hidden folders in Folder Options)

The above is my personal experience. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM. If there are any mistakes or incomplete considerations, please feel free to correct me.

You may also be interested in:
  • Solution to secure-file-priv problem when exporting MySQL data
  • 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

<<:  Echarts implements switching different X-axes in one graph (example code)

>>:  Shell script builds Docker semi-automatic compilation, packaging and release application operations

Recommend

MySQL 8.0.15 installation and configuration graphic tutorial under Win10

This article records the installation and configu...

Thoughts on truncation of multi-line text with a "show more" button

I just happened to encounter this small requireme...

Solve the problem of Navicat for Mysql connection error 1251 (connection failed)

Because what I wrote before was not detailed enou...

How to implement MySQL bidirectional backup

MySQL bidirectional backup is also called master-...

Use three.js to achieve cool acid style 3D page effects

This article mainly introduces how to use the Rea...

How to monitor oracle database using zabbix agent2

Overview In zabbix version 5.0 and above, a new f...

Example of creating table statements for user Scott in MySQL version of Oracle

Overview: Oracle scott user has four tables, whic...

Rendering Function & JSX Details

Table of contents 1. Basics 2. Nodes, trees, and ...

Installation method of MySQL 5.7.18 decompressed version under Win7x64

Related reading: Solve the problem that the servi...

How to configure mysql5.6 to support IPV6 connection in Linux environment

Introduction: This article mainly introduces how ...

How to implement blank space in Taobao with CSS3

Make a blank space for Taobao: When you shrink th...

How to write beautiful HTML code

What Beautiful HTML Code Looks Like How to write ...

Detailed explanation of count(), group by, order by in MySQL

I recently encountered a problem when doing IM, a...

Web development tutorial cross-domain solution detailed explanation

Preface This article mainly introduces the cross-...

How to optimize the slow Like fuzzy query in MySQL

Table of contents 1. Introduction: 2. The first i...