Solution to the error reported by Mysql systemctl start mysqld

Solution to the error reported by Mysql systemctl start mysqld

Error message:

Job for mysqld.service failed because the control process exited with error code. See “systemctl status mysqld.service” and “journalctl -xe” for details.

insert image description here

Positioning error:

vim /var/log/mysqld.log #View log information

See the last line (shift+G)

insert image description here

Cause Analysis:

The MySQL data storage location was changed to the data disk address, the machine was restarted, and the disk mount was not set to automatically mount at startup, resulting in the PID file not being found.

Solution: 1. Check the location of pid-file in /etc/my.cnf

vim /etc/my.cnf 

2. Create the corresponding directory and modify the permissions

mkdir -p /var/run/mysqld
chown mysql.mysql /var/run/mysqld

Now you can try to restart MySQL. If it can start, then it is ok. If it still doesn’t work, continue to step 3.

3. Create a pid file and modify permissions

touch /var/run/mysql/mysqld.pid
chown mysql.mysql /var/run/mysql/mysqld.pid

There should be no problem starting MySQL again!

This is only a temporary solution. If the virtual machine is restarted, the operation will need to be repeated. There is no solution to the fundamental problem yet, so please suspend the virtual machine temporarily. The article will be updated when a solution is found later!

This is the end of this article about solving the problem of Mysql systemctl start mysqld error. For more related content about solving the problem of Mysql systemctl start mysqld error, please search the previous articles of 123WORDPRESS.COM or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • How to solve the error when connecting to MySQL in Linux: Access denied for user 'root'@'localhost'(using password: YES)
  • MySQL login error prompt: Solution to ERROR 1045 (28000)
  • MySQL error: Deadlock found when trying to get lock; try restarting transaction solution
  • MySQL startup error: File ./mysql-bin.index not found (Errcode: 13)
  • mysql error This function has none of DETERMINISTIC solution
  • Solution to MySql error "Table mysql.plugin doesn't exist"
  • MySQL error: MySQL server version for the right syntax to use near type=InnoDB solution
  • MySQL Error 1290 (HY000) Solution
  • MySQL cannot restart and reports the error Warning: World-writable config file '/etc/my.cnf' is ignored. Solution

<<:  What should I do if I can't view the source file of a web page?

>>:  Discussion on style customization and browser compatibility issues when using input element [type="file"]

Recommend

Common date comparison and calculation functions in MySQL

Implementation of time comparison in MySql unix_t...

Mysql master-slave synchronization Last_IO_Errno:1236 error solution

What is the reason for the Last_IO_Errno:1236 err...

How to set a fixed IP address for a VMware virtual machine (graphic tutorial)

1. Select Edit → Virtual Network Editor in the me...

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

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

How to disable IE10's password clear text display and quick clear function

IE10 provides a quick clear button (X icon) and a ...

Complete steps to use vue-router in vue3

Preface Managing routing is an essential feature ...

Several ways to implement 0ms delay timer in js

Table of contents queueMicrotask async/await Mess...

JavaScript to achieve lottery effect

This article shares the specific code of JavaScri...

How to uninstall and reinstall Tomcat (with pictures and text)

Uninstall tomcat9 1. Since the installation of To...

Three uses and differences of MySQL not equal

Judgment symbols are often used in MySQL, and not...

How to reduce the memory and CPU usage of web pages

<br />Some web pages may not look large but ...

How to invert the implementation of a Bezier curve in CSS

First, let’s take a look at a CSS carousel animat...

Implementing Binary Search Tree in JavaScript

The search binary tree implementation in JavaScri...

Implementing access control and connection restriction based on Nginx

Preface Nginx 's built-in module supports lim...