程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> 關於MYSQL數據庫 >> Windows服務器MySQL啟動失敗怎麼辦

Windows服務器MySQL啟動失敗怎麼辦

編輯:關於MYSQL數據庫

       一,配置文件正確,清除緩存

      1.遇到這個問題先不要急著重新安裝MySQL數據庫,其實解決方法很簡單,人需要清理下WIndows的緩存目錄就可以了。

      2.按“windows鍵+R”打開運行對話框,輸入命令“cmd”,回車打開DOS窗口。

    Windows服務器MySQL啟動失敗怎麼辦 三聯

      3.輸入“del c:windowstemp*.* /s /q”,等待文件刪除完,MySQL自然會恢復正常。

    Windows服務器MySQL啟動失敗怎麼辦

      二,配置文件配置錯誤(mysql啟動錯誤1067的解決 )

      問題一

      刪除%windows%/my.ini 刪除其它地方的my.ini 在mysql安裝目錄下把my-small.ini復制為my.ini 在my.ini

      最後一行插入: CODE: [mysqld] #設置basedir指向mysql的安裝路徑

      basedir=C:mysql-5.1.11-beta-win32 datadir=C:mysql-5.1.11-beta-win32data

      重新啟動。。。

      C:mysql-5.1.11-beta-win32in>net start mysql MySQL

      服務正在啟動 . MySQL 服務無法啟動。 系統出錯。

      發生系統錯誤 1067。 進程意外終止。

      C:mysql-5.1.11-beta-win32in>mysqld-nt --remove Service successfully removed.

      C:mysql-5.1.11-beta-win32in>mysqld-nt --install Service successfully installed.

      C:mysql-5.1.11-beta-win32in>net start mysql MySQL 服務正在啟動 . MySQL 服務已經啟動成功。 C:mysql-5.1.11-beta-win32in>net stop mysql MySQL 服務正在停止.. MySQL 服務已成功停止。

      問題二

      Mysql裝好後,重啟電腦第二次發現服務無法啟動。提示如下:

      ------------------------

      MySQL 服務無法啟動。

      系統出錯。

      發生系統錯誤 1067。

      進程意外終止。

      ------------------

      查看了F:ProgramDataMySQLMySQL Server 5.5data 這個目錄中的錯誤日志,顯示如下內容:

      130825 20:47:50 [Note] Plugin 'FEDERATED' is disabled.

      130825 20:47:50 InnoDB: The InnoDB memory heap is disabled

      130825 20:47:50 InnoDB: Mutexes and rw_locks use Windows interlocked functions

      130825 20:47:50 InnoDB: Compressed tables use zlib 1.2.3

      130825 20:47:50 InnoDB: Error: unable to create temporary file; errno: 2

      130825 20:47:50 [ERROR] Plugin 'InnoDB' init function returned error.

      130825 20:47:50 [ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed.

      130825 20:47:50 [ERROR] Unknown/unsupported storage engine: INNODB

      130825 20:47:50 [ERROR] Aborting

      其中核心提示是這句,臨時文件無法創建:

      130825 20:47:50 InnoDB: Error: unable to create temporary file; errno: 2

      因此查看my.ini

      [mysqld]區段內加入:

      #自己指定的臨時文件目錄

      tmpdir="臨時目錄"

    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved