Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to deal with the .mysql.history file in mysql

2025-01-18 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)05/31 Report--

The purpose of this article is to share with you how to deal with the .mysql.history file in mysql. The editor thinks it is very practical, so I share it with you. I hope you can get something after reading this article.

After installing mysql, there will be a .MySQL _ history file in the root home directory

[root@potato ~] # ll-a | grep .MySQL _ history

-rw-. 1 root root 1472 Dec 9 00:07 .mysql _ history

Root@potato ~] # tail-20. MySQL _ history

Show\ 040global\ 040variables\ 040like\ 040 percent% percent'

Show\ 040global\ 040variables\ 040like\ 040% long%'

.

Look, it contains all the statements we've executed before.

Ps: there is a problem of\ 040 escape character error at this time. It should be a space.

Why is this file generated? its purpose is to achieve the ability to flip up and down in the mysql command.

Every time the mysql connection exits, the information of this operation will be recorded in the ~ / .mysql_history file.

However, all our operations are in it. What if someone sees this file with trespassing?

So the existence of this file poses a threat to our database, so how to deal with it?

In fact, it is also very simple.

Use .MySQL _ history as a soft connection to / dev/null, which is equivalent to outputting all statements to / dev/null

[root@potato] # ln-f-s / dev/null ~ / .mysql_history

[root@potato ~] # cat. MySQL _ history

.MySQL _ history becomes an empty file

This is how to deal with the .mysql.history file in mysql. The editor believes that there are some knowledge points that we may see or use in our daily work. I hope you can learn more from this article. For more details, please follow the industry information channel.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report