[backcolor=rgb(238, 238, 23 ]MySQL的1067錯(cuò)誤的多種解決方法, 3
[backcolor=rgb(238, 238, 23 ]以便大家遇到該錯(cuò)誤時(shí)可以快速參考解決。 A
內(nèi)容: 網(wǎng)
絡(luò)
路
過
1
[backcolor=rgb(238, 238, 23 ] 安裝MYSQL后更改了ROOT的密碼后用 net startmysql
[backcolor=rgb(238, 238, 23 ] 啟動時(shí)我就遇到了這樣的問題.使用以下命令后 c:\mysql\bin\mysqladmin-u root -p shutdown
[backcolor=rgb(238, 238, 23 ] 再net start mysql就沒有這個(gè)錯(cuò)誤提示了! [backcolor=rgb(238, 238, 23 ] ------------- [backcolor=rgb(238, 238, 23 ] 2 [backcolor=rgb(238, 238, 23 ] MySQL的1067錯(cuò)誤 [backcolor=rgb(238, 238, 23 ] Q:我的Mysql碰到了 1067 錯(cuò)誤 [backcolor=rgb(238, 238, 23 ] 錯(cuò)誤信息為: A system error has occurred. System error 1067 has occurred. The process terminated unexpectedly.
A:在我的機(jī)上的解決辦法是: 1.檢查你的Mysql目錄有沒有給系統(tǒng)的System用戶權(quán)限。 2.刪除掉你的 %WINDOWS%/my.ini 文件。 3.檢查你的 my.ini文件配置是否正確設(shè)置basedir指向mysql的安裝路徑 basedir=D:\Program\Tools\mysql datadir=D:\Program\Tools\mysql\data
------------- 3 mysql服務(wù)無法啟動的解決方法 mysql服務(wù)無法啟動 無論安裝何版本的mysql,在管理工具的服務(wù)中啟動mysql服務(wù)時(shí)都會在中途報(bào)錯(cuò) 內(nèi)容為:在 本地計(jì)算機(jī) 無法啟動mysql服務(wù) 錯(cuò)誤1067:進(jìn)程意外中止 經(jīng)過多方求教,得解決方法如下 查找系統(tǒng)(后來驗(yàn)證應(yīng)該為windows目錄)目錄下的my.ini文件,編輯內(nèi)容(如果沒有該文件,則新建一個(gè)),至少包含basedir,datadir這兩個(gè)基本的配置。 [mysqld] # set basedir to installation path, e.g., c:/mysql # 設(shè)置為MYSQL的安裝目錄 basedir=D:/www/WebServer/MySQL # set datadir to location of data directory, # e.g., c:/mysql/data or d:/mydata/data # 設(shè)置為MYSQL的數(shù)據(jù)目錄 datadir=D:/www/WebServer/MySQL/data
另外,要注意 [WinMySQLadmin] Server=D:/www/WebServer/MySQL/bin/mysqld-nt.exe user=root password=xxxxxxxx #以上是設(shè)置WinMySQLadmin的配置 [Client] user=root password=xxxxxxxx
|