web-dev-qa-db-ja.com

InnoDB:mmap(68878336バイト)が失敗しました。 errno 12

スクリーンショットはすべてを説明しています。最初に起動しようとしましたが、起動しません。ステータスを確認してから、ログを確認します。

errorenter image description hereenter image description here

StackExchangeに関して私が創設した以前のいくつかの提案に従った後、my.cnfの内容は次のとおりです。

[mysqld]
datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock
# Disabling symbolic-links is recommended to prevent assorted security risks
symbolic-links=0
# Settings user and group are ignored when systemd is used.
# If you need to run mysqld under a different user or group,
# customize your systemd unit file for mariadb according to the
# instructions in http://fedoraproject.org/wiki/Systemd
performance_schema=off
innodb_buffer_pool_size=64MB
innodb_purge_threads=0

[mysqld_safe]
log-error=/var/log/mariadb/mariadb.log
pid-file=/var/run/mariadb/mariadb.pid

#
# include all files from the config directory
#
!includedir /etc/my.cnf.d
1
User

innodb_buffer_pool_sizeの小さい値を使用して構成ファイルを変更します。

たとえば、innodb_buffer_pool_size = 8Mを使用します

1
shodanshok

この投稿はあなたを助けるかもしれません。基本的に、メモリが不足しています。 max_connection変数およびその他のパラメーターを下げてみてください。

https://dba.stackexchange.com/questions/1927/why-does-mysql-say-im-out-of-memory

0
antimatter