How to view the database installation path in MySQL

How to view the database installation path in MySQL

We can view the installation path of mysql through the mysql command:

# Either of the following two SQL statements can be queried: select @@basedir as basePath from dual;
show variables like '%basedir%';

The basic installation path can be seen above. To check the path of the database data, it is very simple. Just replace the above parameter variable with datadir:

# Any of the following queries can be used select @@datadir as dataPath from dual;
show variables Like '%datadir%';

Of course, the above is based on being able to log in to the MySQL window to view it. Then friends will ask, if you don’t know the account password to log in to MySQL, how can you view the MySQL path?

Method 1:

1: Query the path where the running file is located

which mysql

Then you can connect to Mysql through /usr/bin/mysql -u account -p password:

Then execute any of the above MySQL to view the installation path. Is this too complicated? It can be simpler.

Method 2:

View the installation information of mysql:

ps -ef | grep mysql

The red mark shows the specific path.

This is the end of this article about how to view the database installation path in MySQL. For more information about MySQL database installation path, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

<<:  H tags should be used reasonably in web page production

>>:  Quickjs encapsulates JavaScript sandbox details

Recommend

Several ways of running in the background of Linux (summary)

1. nohup Run the program in a way that ignores th...

Tutorial on installing MySQL 8.0.11 under Linux

1. Go to the official website to download the ins...

js array entries() Get iteration method

Table of contents 1. Detailed syntax of entires()...

Explanation of MySQL's horizontal and vertical table partitioning

In my previous article, I said that the optimizat...

Summary of MySQL common functions

Preface: The MySQL database provides a wide range...

Use js to write a simple snake game

This article shares the specific code of a simple...

Share 12 commonly used Loaders in Webpack (Summary)

Table of contents Preface style-loader css-loader...

Index Skip Scan in MySQL 8.0

Preface MySQL 8.0.13 began to support index skip ...

JavaScript Basics Objects

Table of contents 1. Object 1.1 What is an object...

How to use LibreOffice to convert document formats under CentOS

Project requirements require some preprocessing o...

Mini Program to Implement Sieve Lottery

This article example shares the specific code of ...

Complete steps to quickly configure HugePages under Linux system

Preface Regarding HugePages and Oracle database o...