zoukankan      html  css  js  c++  java
  • 黄聪:xampp运行MySQL shutdown unexpectedly解决方案

    相信不少喜欢WordPress的朋友和我一样,会用xampp在本地搭建一个网站学习调试,但是在用的过程中也会遇到些麻烦,毕竟我们都是小白,今天就分享一个xampp运行MySQL数据时出现 Error: MySQL shutdown unexpectedly. 的完美解决方案。

    故障描述:

    1. 12:15:46  [mysql] Attempting to start MySQL app...

      12:15:47  [mysql] Status change detected: running

      12:15:47  [mysql] Status change detected: stopped

      12:15:47  [mysql] Error: MySQL shutdown unexpectedly.

      12:15:47  [mysql] This may be due to a blocked port, missing dependencies, 

      12:15:47  [mysql] improper privileges, a crash, or a shutdown by another method.

      12:15:47  [mysql] Press the Logs button to view error logs and check

      12:15:47  [mysql] the Windows Event Viewer for more clues

      12:15:47  [mysql] If you need more help, copy and post this

      12:15:47  [mysql] entire log window on the forums

    2.  故障说明:

      在我们启动xampp时,发现Apache可以正常启动;而MySQL却不能正常运行。我们称它为MySQL意外关机。这是由于端口被占用,或者缺少运行特权,崩溃而导致MySQL数据库意外关闭。

       
    3.  解决办法:

      在xampp软件界面找到MySQL组件,点击其组件下的config按钮,打开mysql配置文件(位置如下图);

    4. 在mysql配置文件内搜索到[mysqld]所在行,在其下方插入

      [mysqld]

      innodb_force_recovery = 4

      保存后关闭记事本(位置如下图);

    5. 这时重新运行MySQL组件,是不是发现问题已经解决了呢!

      13:00:41  [mysql] Attempting to start MySQL app...

      13:00:41  [mysql] Status change detected: running

       

     

  • 相关阅读:
    vue小项目总结与笔记【八】——keep-alive的使用
    vue小项目总结与笔记【七】——vuex实现数据共享
    vue小项目总结与笔记【六】——使用axios发送ajax请求
    安装SVN和汉化包及基本使用
    readhat6.5下安装weblogic10.3.6
    ssh连接不上vmware虚拟机centos7.5
    Oracle数据库基础操作语法
    Linux调整lvm逻辑分区大小
    win7安装oracle11g和oracle client和pl/sql
    linux常用命令--转载
  • 原文地址:https://www.cnblogs.com/huangcong/p/9185844.html
Copyright © 2011-2022 走看看