How to install MySQL 5.7 on Ubuntu and configure the data storage path

How to install MySQL 5.7 on Ubuntu and configure the data storage path

1. Install MySQL

This article is installed via APT, and the latest version installed is 5.7.21

(Note: The versions installed via APT are the latest versions. After installation in this way, the startup and environment variables on the command line are already configured, and no manual configuration is required.)

sudo apt-get install mysql-server

If insufficient dependencies are prompted, run the following command to resolve the dependency problem. If no dependency problem occurs, then you do not need to use this command

sudo apt-get install -f

During the installation process, you will be prompted to enter the root user password twice.

Note: After installation in this way, the startup and automatic startup are already configured, and the environment variables on the command line do not need to be configured manually.

After installation, the following directories will be created:

Database directory: /var/lib/mysql/

Configuration files: /usr/share/mysql (command and configuration files), /etc/mysql (such as: my.cnf)

Related commands: /usr/bin (mysqladmin mysqldump and other commands) and /usr/sbin

Startup script: /etc/init.d/mysql (directory of the startup script file mysql)

Service management startup sudo service mysql start
Stopsudo service mysql stop
Service status sudo service mysql status

2. Configure MySQL data storage path

I use Alibaba Cloud, which provides me with a 20G data disk. The path after mounting is /data.

Create a folder

mkdir /data/mysql

Copy the default installed MySql database to /data/mysql and set permissions

sudo cp -R /var/lib/mysql/* /data/mysql
sudo chown -R mysql:mysql /data/mysql <==Modify the access rights of the new path sudo service mysql stop <==Stop the MySQL service

If it is not a new database, delete the log file

rm -rf /database/mysql/ib_logfile0
rm -rf /database/mysql/ib_logfile1

Modify the /etc/mysql/mysql.conf.d/mysqld.cnf file: datadir = /data/mysql.

Modify the startup file

sudo vim /etc/apparmor.d/usr.sbin.mysqld

Will
/var/lib/mysql/r
/var/lib/mysql/** rwk
Change to
/data/mysql/r
/data/mysql/** rwk

Restart MySQL

sudo /etc/init.d/apparmor restart
sudo /etc/init.d/mysql restart

Log in to MySql and verify the data directory

mysql>show variables like '%dir%'; <==When datadir is displayed as /data/mysql, the modification is successful

As shown in the figure

MySQL is relatively easy to install via APT

The following is a detailed command flow for data file migration, for reference only.

root@ww:~# mkdir /data/mysql
root@ww:~# sudo cp -R /var/lib/mysql/* /data/mysql
root@ww:~# sudo chown -R mysql:mysql /data/mysql
root@ww:~# sudo service mysql stop
root@ww:~# vim /etc/mysql/mysql.conf.d/mysqld.cnf
root@ww:~# sudo vim /etc/apparmor.d/usr.sbin.mysqld
root@ww:~# sudo /etc/init.d/apparmor restart
[ ok ] Restarting apparmor (via systemctl): apparmor.service.
root@ww:~# sudo /etc/init.d/mysql restart
[ ok ] Restarting mysql (via systemctl): mysql.service.

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:
  • Two ways of storing scrapy data in MySQL database (synchronous and asynchronous)
  • Python example of storing JSON-like data in MySQL
  • How to change the database data storage directory in MySQL
  • Detailed example of MySQL data storage process parameters
  • How to move mysql5.7.19 data storage location in Centos7
  • How to implement Mysql switching data storage directory
  • Solution to changing the data storage location of the database in MySQL 5.7
  • MySQL database architecture details
  • MySQL spatial data storage and functions

<<:  MySQL database SELECT query expression analysis

>>:  How to turn local variables into global variables in JavaScript

Recommend

How to configure VMware multi-node environment

This tutorial uses CentOS 7 64-bit. Allocate 2GB ...

Mini Program implements custom multi-level single-select and multiple-select

This article shares the specific code for impleme...

MySQL batch adding and storing method examples

When logging in to the stress test, many differen...

Detailed explanation of the mechanism and implementation of accept lock in Nginx

Preface nginx uses a multi-process model. When a ...

Understanding Nginx Current Limitation in One Article (Simple Implementation)

Nginx is now one of the most popular load balance...

Detailed explanation of mysql permissions and indexes

mysql permissions and indexes The highest user of...

Quick understanding of Vue routing navigation guard

Table of contents 1. Global Guard 1. Global front...

How to write the parent and child directories of HTML relative paths

How to indicate the parent directory ../ represent...

How to view image information in Docker

In this article, we will need to learn how to vie...

Nginx installation error solution

1. Unzip nginx-1.8.1.tar.gz 2. Unzip fastdfs-ngin...

JavaScript imitates Jingdong magnifying glass special effects

This article shares the specific code of JavaScri...

How to execute Linux shell commands in Docker

To execute a shell command in Docker, you need to...

Should I abandon JQuery?

Table of contents Preface What to use if not jQue...