View MySQL installation information under Linux server

View MySQL installation information under Linux server

View the installation information of mysql:

#ps -ef | grep mysql

usr/bin/mysql means: the running path of mysql
var/lib/mysql refers to: the storage path of mysql database files
usr/lib/mysql refers to: the installation path of mysql

#whereis mysql

#mysqladmin -u root -p variables

root is your database account. Press Enter and you will be prompted to enter your password. Enter the password corresponding to the account filled in above and press Enter. A large table will appear. Find the datadir line, and the value behind it is the path where the database is located.

You may also be interested in:
  • Steps to configure the mongodb environment in Linux server
  • Detailed explanation of Linux NTP server time synchronization settings
  • How to enable MySQL remote connection in Linux server
  • Linux detects whether the server is connected to the network
  • How to use FTP on Windows desktop to upload files to Linux server
  • How to solve the problem of full disk space on Linux server
  • How to copy files between two Linux servers and log in without password
  • Detailed steps to deal with Linux server hacking

<<:  How to create, start, and stop a Docker container

>>:  JavaScript canvas implements graphics and text with shadows

Recommend

JavaScript method to detect the type of file

Table of contents 1. How to view the binary data ...

JavaScript implements large file upload processing

Many times when we process file uploads, such as ...

Detailed explanation of common methods of JavaScript String

Table of contents 1. charAt grammar parameter ind...

Linux remote control windows system program (three methods)

Sometimes we need to remotely run programs on the...

Introduction to general_log log knowledge points in MySQL

The following operation demonstrations are all ba...

Detailed example of using if statement in mysql stored procedure

This article uses an example to illustrate the us...

Detailed explanation of the difference between var, let and const in JavaScript

Table of contents As a global variable Variable H...

Complete steps to implement location punch-in using MySQL spatial functions

Preface The project requirement is to determine w...

JavaScript to achieve progress bar effect

This article example shares the specific code of ...

Using Nginx to implement grayscale release

Grayscale release refers to a release method that...

Explanation of the problem that JavaScript strict mode does not support octal

Regarding the issue that JavaScript strict mode d...

How to add indexes to MySQL

Here is a brief introduction to indexes: The purp...

WeChat applet realizes multi-line text scrolling effect

This article example shares the specific code for...