- 履歴一覧
- 差分 を表示
- 現在との差分 を表示
- ソース を表示
- 障害メモ/MySQLがあがらない「The server quit without updating PID file」 へ行く。
- 1 (2013-07-03 (水) 07:53:38)
- 2 (2013-07-03 (水) 07:56:10)
- 3 (2013-07-04 (木) 02:24:28)
キーワード†
- MySQL
- InnoDB
- buffer pool
関連†
現象†
mysqldが立ちあがらない。
Starting MySQL..The server quit without updating PID file(***.pid).
原因†
コマンド実行時のメッセージは罠。pidが作れないとかそんなことではない。
ログを見ます。
- mysql-error.log
130703 0:16:23 InnoDB: The InnoDB memory heap is disabled 130703 0:16:23 InnoDB: Mutexes and rw_locks use GCC atomic builtins 130703 0:16:23 InnoDB: Compressed tables use zlib 1.2.3 130703 0:16:23 InnoDB: Initializing buffer pool, size = 4.0G InnoDB: mmap(4395630592 bytes) failed; errno 12 130703 0:16:23 InnoDB: Completed initialization of buffer pool 130703 0:16:23 InnoDB: Fatal error: cannot allocate memory for the buffer pool 130703 0:16:23 [ERROR] Plugin 'InnoDB' init function returned error. 130703 0:16:23 [ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed. 130703 0:16:23 [ERROR] Unknown/unsupported storage engine: InnoDB 130703 0:16:23 [ERROR] Aborting
メモリサイズ指定が大きすぎて buffer pool の初期化ができなかったということらしい。
※今回はこうだった、というだけで別の ERROR もあり得ます
対策†
メモリサイズ指定を小さくします。
- /etc/my.cnf
#innodb_buffer_pool_size = 4096M innodb_buffer_pool_size = 1024M