溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

mysql5.5 啟動報錯:ERROR該怎么辦

發(fā)布時間:2021-12-01 10:01:11 來源:億速云 閱讀:158 作者:柒染 欄目:數(shù)據(jù)庫

今天就跟大家聊聊有關(guān)mysql5.5 啟動報錯:ERROR該怎么辦,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。

在FreeBSD中啟動mysql時報錯,ERROR! The server quit without updating PID file,通常這是可以查看目錄下的.err日志,里面會記錄一些具體的錯誤信息,對排錯相當有用,內(nèi)容如下:

110805 17:30:19 d_safe Starting mysqld daemon with databases from /usr/local/mysql5.5/data

110805 17:30:19 InnoDB: The InnoDB memory heap is disabled

110805 17:30:19 InnoDB: Mutexes and rw_locks use GCC atomic builtins

110805 17:30:19 InnoDB: Compressed tables use zlib 1.2.3

110805 17:30:19 InnoDB: Initializing buffer pool, size = 256.0M

110805 17:30:19 InnoDB: Completed initialization of buffer pool

InnoDB: Error: log file /usr/local/mysql5.5/data/ib_logfile0 is of different size 0 5242880 bytes

InnoDB: than specified in the .cnf file 0 67108864 bytes!

110805 17:30:19 [ERROR] Plugin 'InnoDB' init function returned error.

110805 17:30:19 [ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed.

110805 17:30:19 [ERROR] Unknown/unsupported storage engine: InnoDB

110805 17:30:19 [ERROR] Aborting

110805 17:30:19 [Note] /usr/local/mysql5.5/bin/mysqld: Shutdown complete

看到上面紅色字體,顯示錯誤是出在日志文件大小上,于是查看mysql的配置文件/etc/my.cnf

# Uncomment the following if you are using InnoDB tables

innodb_data_home_dir = /usr/local/mysql5.5/data

innodb_data_file_path = ibdata1:10M:autoextend

innodb_log_group_home_dir = /usr/local/mysql5.5/data

# You can set .._buffer_pool_size up to 50 - 80 %

# of RAM but beware of setting memory usage too high

innodb_buffer_pool_size = 256M

innodb_additional_mem_pool_size = 20M

# Set .._log_file_size to 25 % of buffer pool size

innodb_log_file_size = 64M

innodb_log_buffer_size = 8M

innodb_flush_log_at_trx_commit = 1

innodb_lock_wait_timeout = 50

配置文件中指定了innodb_log_file_size=64M,在看看我的數(shù)據(jù)庫目錄下,日志文件大小是不是64M,如下圖,發(fā)現(xiàn)問題了,日志文件是5242880是5M

找到問題了,解決辦法可以更改配置文件,也可以刪除現(xiàn)在這個日志,再啟動mysql這樣它會重新生成這兩個日志文件。

怎么會出現(xiàn)這個問題呢?

一般來說,是由于,在my.cnf中關(guān)于INNODB的一些配置是被注釋的,在沒有更改的情況下,系統(tǒng)就使用了默認值,這樣,當你把關(guān)于innodb的配置選項注釋去掉的時候,就會出現(xiàn)這個報錯!

看完上述內(nèi)容,你們對mysql5.5 啟動報錯:ERROR該怎么辦有進一步的了解嗎?如果還想了解更多知識或者相關(guān)內(nèi)容,請關(guān)注億速云行業(yè)資訊頻道,感謝大家的支持。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI