Starting MySQL.. ERROR! The server quit without updating PID file (/usr/local/mysql/data/VM-4-6-centos.pid).
时间: 2023-10-23 11:29:46 浏览: 168
linux mysql 报错:MYSQL:The server quit without updating PID file
5星 · 资源好评率100%
在CentOS上部署MySQL时,如果出现"Starting MySQL... ERROR! The server quit without updating PID file"的错误提示,可以根据以下步骤来解决:
1. 首先,确认错误消息中提到的PID文件路径是否正确。在这个例子中,PID文件路径为"/usr/local/mysql/data/VM-4-6-centos.pid"。
2. 检查该路径下是否存在名为"VM-4-6-centos.pid"的文件。如果不存在,可以尝试手动创建一个空的PID文件。切换到"/usr/local/mysql/data"目录下,使用以下命令创建PID文件:
```
touch VM-4-6-centos.pid
```
3. 重新启动MySQL服务。使用以下命令启动MySQL:
```
systemctl start mysqld
```
4. 如果问题仍然存在,可以尝试检查MySQL的配置文件。在MySQL的配置文件中(通常为/etc/my.cnf或/etc/mysql/my.cnf),查找并确认"pid-file"选项的值是否与PID文件路径一致。如果不一致,可以尝试修改配置文件中的"pid-file"选项并将其值设置为正确的PID文件路径。
5. 修改完配置文件后,重新启动MySQL服务。
通过以上步骤,你应该能够解决"Starting MySQL... ERROR! The server quit without updating PID file"的问题。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *3* [Starting MySQL...... The server quit without updating PID file (/usr/local/mysql/data/VM-8-16-ce](https://blog.csdn.net/weixin_44440658/article/details/114143581)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"]
- *2* [CentOS安装mysql The server quit without updating PID file问题](https://download.csdn.net/download/weixin_38672739/13684722)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"]
[ .reference_list ]
阅读全文