MySQL5.7 single instance self-starting service configuration process

MySQL5.7 single instance self-starting service configuration process

1.MySQL version

[root@clq system]# mysql -v
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 49
Server version: 5.7.33 MySQL Community Server (GPL)

2. Configure the mysqld.service file

[Unit]
Description=mysql server daemon
After=network.target mysql-keygen.target
[Service]
Type=forking
ExecStart=/usr/local/mysql/support-files/mysql.server start
ExecStop=/usr/local/mysql/support-files/mysql.server stop
ExecReload=/bin/kill -HUP $MAINPID
[Install]
WantedBy=multi-user.target
[Install]
WantedBy=multi-user.target

3. Where the mysqld.service file is placed

/usr/lib/systemd/system/mysqld.service

4. Self-start

 systemctl daemon-reload 
systemctl enable --now mysqld
[root@mysql ~]# ss -antl
State Recv-Q Send-Q Local Address:Port Peer Address:Port Process        
LISTEN 0 128 0.0.0.0:111 0.0.0.0:*                          
LISTEN 0 32 192.168.122.1:53 0.0.0.0:*                          
LISTEN 0 128 0.0.0.0:22 0.0.0.0:*                          
LISTEN 0 5 127.0.0.1:631 0.0.0.0:*                          
LISTEN 0 128 [::]:111 [::]:*                          
LISTEN 0 128 [::]:22 [::]:*                          
LISTEN 0 5 [::1]:631 [::]:*                          
LISTEN 0 80 *:3306 *:*  

The above is the detailed content of the MySQL 5.7 single instance self-starting service configuration process. For more information about the MySQL 5.7 single instance self-starting service configuration, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • Detailed explanation of the installation, configuration, startup and shutdown methods of the Mysql server
  • MySQL multi-instance installation boot auto-start service configuration process
  • MySQL configuration master-slave server (one master and multiple slaves)
  • MySQL in Windows net start mysql Start MySQL service error occurs System error solution
  • 5 MySQL GUI tools recommended to help you with database management
  • 19 MySQL optimization methods in database management
  • Detailed introduction to 5 commonly used MySQL database management tools
  • Summary of Common Commands for MySQL Database Management
  • MySQL service and database management

<<:  Detailed explanation of JavaScript BOM composition and common events

>>:  How to use docker compose to build fastDFS file server

Recommend

MySQL optimization solution: enable slow query log

Table of contents Preface Setting up slow query l...

Analysis of the reasons why MySQL field definitions should not use null

Why is NULL so often used? (1) Java's null Nu...

HTML Tutorial: Ordered Lists

<br />Original text: http://andymao.com/andy...

JavaScript implementation of a simple addition calculator

This article example shares the specific code of ...

Explanation of the working mechanism of namenode and secondarynamenode in Hadoop

1) Process 2) FSImage and Edits Nodenode is the b...

Various types of MySQL indexes

What is an index? An index is a data structure th...

How to create a MySQL database (de1) using commands

1. Connect to MYSQL Format: mysql -h host address...

Briefly talk about mysql left join inner join

Preface I have been busy developing a cold chain ...

Some problems you may encounter when installing MySQL

Question 1: When entering net start mysql during ...

Vue implements internationalization of web page language switching

1. Basic steps 1: Install yarn add vue-i18n Creat...

Detailed explanation of docker version es, milvus, minio startup commands

1. es startup command: docker run -itd -e TAKE_FI...

Detailed analysis of matching rules when Nginx processes requests

When nginx receives a request, it will first matc...

3 ways to create JavaScript objects

Table of contents 1. Object literals 2. The new k...