web-dev-qa-db-ja.com

MySQL(MariaDB)が頻繁にクラッシュする

最近、MySQLを実行している古いサーバーをMariaDB 5.5を実行している新しいVPSに移行しました。私はサーバー上であまり多くを実行していません(ほんの数PHPサイト))、空きメモリは問題ないようですが、DBがクラッシュし続けます-場合によっては数日ごとに、他の時間内に数時間。

ログに次のエラーが表示されます。

131231  1:43:04 [ERROR] mysqld: Out of memory (Needed 128917504 bytes)
131231  1:43:04 [ERROR] mysqld: Out of memory (Needed 96681984 bytes)
131231  1:43:04 [ERROR] mysqld: Out of memory (Needed 72499200 bytes)
131231  1:43:04 [ERROR] mysqld: Out of memory (Needed 54362112 bytes)
131231  1:43:04 InnoDB: The InnoDB memory heap is disabled
131231  1:43:04 InnoDB: Mutexes and rw_locks use GCC atomic builtins
131231  1:43:04 InnoDB: Compressed tables use zlib 1.2.3.4
131231  1:43:04 InnoDB: Using Linux native AIO
131231  1:43:04 InnoDB: Initializing buffer pool, size = 128.0M
InnoDB: mmap(137756672 bytes) failed; errno 12
131231  1:43:04 InnoDB: Completed initialization of buffer pool
131231  1:43:04 InnoDB: Fatal error: cannot allocate memory for the buffer pool
131231  1:43:04 [ERROR] Plugin 'InnoDB' init function returned error.
131231  1:43:04 [ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed.
131231  1:43:04 [Note] Plugin 'FEEDBACK' is disabled.
131231  1:43:04 [ERROR] Unknown/unsupported storage engine: InnoDB
131231  1:43:04 [ERROR] Aborting

131231  1:43:04 [Note] /usr/sbin/mysqld: Shutdown complete

InnoDBヒープのmy.cnf設定を試してみましたが、役に立たないようです。関連する部分は次のとおりです。

innodb_buffer_pool_size = 128M
innodb_log_buffer_size  = 8M
innodb_file_per_table   = 1
innodb_open_files       = 400
innodb_io_capacity      = 400
innodb_flush_method     = O_DIRECT

「十分な」空きRAMがあるようで、スワップも利用できます。

root@phoenix:~# free -m
             total       used       free     shared    buffers     cached
Mem:           994        923         71          0         19        417
-/+ buffers/cache:        486        508
Swap:         1023        131        892

この問題を解決/トラブルシューティングするにはどうすればよいですか?私はinterwebzを手掛かりに探しましたが、何も助けになりませんでした。

9
Matt Hamann

お役に立てれば幸いです。

試す

performance_schema = off

[mysqld]構成のセクション。

https://mariadb.com/resources/blog/starting-mysql-on-low-memory-virtual-machines/

9
sheng chi