全部博文(362)
分类: Mysql/postgreSQL
2011-05-30 10:52:42
100823 11:20:08 [ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed.
100823 11:20:08 InnoDB: Error: cannot allocate 2147500032 bytes of
InnoDB: memory with malloc! Total allocated memory
innodb_buffer_pool_size=2G
由于内存不足,
# free -m
total used free shared buffers cached
Mem: 1010 533 477 0 68 147
-/+ buffers/cache: 317 693
Swap: 1024 0 1024
解决办法:
1、增加swap分区容量 参考
2、修改innodb_buffer_pool_size值.
重启mysql,使用show engines查看,如下所示:
mysql> show engines;
+------------+---------+------------------------------------------------------------+--------------+------+------------+
| Engine | Support | Comment | Transactions | XA | Savepoints |
+------------+---------+------------------------------------------------------------+--------------+------+------------+
| MRG_MYISAM | YES | Collection of identical MyISAM tables | NO | NO | NO |
| CSV | YES | CSV storage engine | NO | NO | NO |
| MyISAM | DEFAULT | Default engine as of MySQL 3.23 with great performance | NO | NO | NO |
| InnoDB | YES | Supports transactions, row-level locking, and foreign keys | YES | YES | YES |
| MEMORY | YES | Hash based, stored in memory, useful for temporary tables | NO | NO | NO |
+------------+---------+------------------------------------------------------------+--------------+------+------------+
5 rows in set (0.00 sec)