Error message:
Positioning error: vim /var/log/mysqld.log #View log information See the last line (shift+G) 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:
|
<<: What should I do if I can't view the source file of a web page?
To use standard CSS3 to achieve the shadow effect...
Related knowledge points Passing values from pa...
Classical color combinations convey power and auth...
[LeetCode] 181.Employees Earning More Than Their ...
How to write judgment statements in mysql: Method...
Preface: Use debugbar to view document code in iet...
Preface The origin is a question 1: If your umask...
Installation of Python 3 1. Install dependent env...
The table structure is as follows. There are only...
First execute the command: [root@mini61 setuptool...
Docker is a management tool that uses processes a...
This article uses examples to illustrate the diff...
Three ways to define functions in JS Let me expla...
This article shares the specific code of Vue+expr...
1. Go to the official website to download the jdk...