Detailed explanation of MySQL instance with SSD storage enabled

Detailed explanation of MySQL instance with SSD storage enabled

Detailed explanation of MySQL instance with SSD storage enabled

Sometimes slow OS read and write operations can degrade MySQL server performance, especially when the OS and MySQL use the same disk. Therefore, it is best to let MySQL use a separate disk, preferably an SSD. To do this, you need to mount the new SSD disk to the server, assuming the new disk is at /dev/sdb.

1. Prepare a new disk:

# fdisk /dev/sdb

Pressing 'n' will create a new partition; pressing 'p' will create a new primary partition. Then set the partition number (from 1 to 4), select the partition size, and press Enter.

If you do not want to use the entire disk as a partition, you still need to continue creating new partitions.

Press "w" to write the changes.

2. Create a file system on a new partition

# mkfs.ext4 /dev/sdb1

3. Map the new partition to a directory. I named it "ssd" in the root directory.

# mkdir /ssd/
# mount /dev/sdb1 /ssd/

4. Make this mapping effective when the server starts

Modify the configuration file /etc/fstab

/dev/sdb1 /ssd ext4 defaults 0 0

5. Move MySQL to the new disk

Stop the MySQL service first

# service mysqld stop

If the system has a MySQL service, stop it, for example

# service httpd stop
# service nginx stop

Copy the entire MySQL directory to the new disk

# cp /var/lib/mysql /ssd/ -Rp

After the copy is complete, rename the MySQL directory

# mv /var/lib/mysql /var/lib/mysql-backup

Next, create a symbolic link

# ln -s /ssd/mysql /var/lib/mysql

Now you can start the MySQL service

# service mysqld start
# service httpd start
# service nginx start

If you have any questions, please leave a message or come to the community to discuss. Thank you for reading and I hope it can help you. Thank you for your support of this site!

You may also be interested in:
  • MySQL performance optimization best 20 experience sharing
  • In-depth analysis of MySQL database engine introduction, differences, creation and performance testing
  • MYSQL performance optimization sharing (sharding of databases and tables)
  • MySQL performance optimization road --- modify the configuration file my.cnf
  • MySQL Performance Settings
  • Tips to significantly improve MySQL query performance
  • MySQL performance optimization index optimization
  • Detailed analysis and testing of SSD performance issues in MySQL servers

<<:  React sample code to implement automatic browser refresh

>>:  Detailed configuration of wireless network card under Ubuntu Server

Recommend

Whitespace processing in HTML/CSS and how to preserve whitespace in the page

Whitespace rules in HTML In HTML, multiple spaces...

Detailed explanation of map overlay in openlayers6

1. Overlay Overview Overlay means covering, as th...

Docker exposes port 2375, causing server attacks and solutions

I believe that students who have learned about th...

JS array deduplication details

Table of contents 1 Test Cases 2 JS array dedupli...

Various methods to implement the prompt function of text box in html

You can use the attribute in HTML5 <input="...

A brief discussion on MySql views, triggers and stored procedures

view What is a view? What is the role of a view? ...

A brief analysis of controlled and uncontrolled components in React

Table of contents Uncontrolled components Control...

Example of stars for CSS rating effect

What? What star coat? Well, let’s look at the pic...

How to fix some content in a fixed position when scrolling HTML page

This article mainly introduces how some content i...

Detailed explanation of zabbix executing scripts or instructions on remote hosts

Scenario Requirements 1. We can use the script fu...

Introduction to Kubernetes (k8s)

I had always wanted to learn Kubernetes because i...

How to use Docker to package and deploy images locally

First time using docker to package and deploy ima...

A brief discussion on the corresponding versions of node node-sass sass-loader

Table of contents The node version does not corre...

A brief analysis of Vue's asynchronous update of DOM

Table of contents The principle of Vue asynchrono...