What is the reason why the server quit without updating PID file keeps reporting when installing mysql5.7 version on Linux?
莫名的微笑
莫名的微笑 2017-07-31 14:15:09
0
2
1100
莫名的微笑
莫名的微笑

reply all(2)
ringa_lee

1. It may be that the /usr/local/mysql/data/mysql.pid file does not have write permission
Solution: Give permission and execute "chown -R mysql:mysql /var/data" "chmod -R 755 /usr/ local/mysql/data” Then restart mysqld!

2. The mysql process may already exist in the process
Solution: Use the command "ps -ef|grep mysqld" to check whether there is a mysqld process. If there is, use "kill -9 process ID" to kill it, and then restart mysqld!

3. It may be the second time I installed mysql on the machine, and there is residual data that affects the startup of the service.
Solution: Go to the mysql data directory/data and take a look. If mysql-bin.index exists, delete it quickly. It is the culprit. I solved it using the third method!

4. When mysql does not specify a configuration file when starting, it will use the /etc/my.cnf configuration file. Please open this file to check whether the data directory (datadir) is specified under the [mysqld] section.
Solution: Please set this line under [mysqld]: datadir = /usr/local/mysql/data

5. Skip-federated field problem
Solution: Check if there is any in the /etc/my.cnf file If there are any skip-federated fields that are commented out, comment them out immediately.

6. The error log directory does not exist
Solution: Use the "chown" "chmod" command to give mysql owner and permissions

7. Selinux is the cause of trouble. If it is a centos system, selinux will be turned on by default
Solution: Close For it, open /etc/selinux/config, change SELINUX=enforcing to SELINUX=disabled, save and exit, and try restarting the machine.

  • reply Tried all of these, to no avail. . . .
    莫名的微笑 author 2017-08-08 17:41:45
大家讲道理

Baidu has a lot of solutions...

  • reply I’m asking because the method of reading hundreds of times didn’t work. . . . .
    莫名的微笑 author 2017-08-08 17:40:28
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!