遷移的網站生成文檔到三分之一左右的時候報錯: Error infos:DedeCms錯誤警告:連接資料庫失敗可能是資料庫密碼不對或資料庫伺服器出錯! 火大,登陸MySQL發現 ERROR 2002 (HY000): Can't connect to local MySQL server throug ...
遷移的網站生成文檔到三分之一左右的時候報錯:
Error infos:DedeCms錯誤警告:連接資料庫失敗可能是資料庫密碼不對或資料庫伺服器出錯!
火大,登陸MySQL發現
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock'
service mysqld restart 重啟失敗:mysql daemon failed to start
cat /var/log/mysqld.log 發現:
[NOTE] InnoDB: Initializing buffer pool, size = 128.0M
[NOTE] InnoDB: mmap(137363456 bytes) failed; errno 12
[ERROR] InnoDB: Cannot allocate memory for the buffer pool
[ERROR] Plugin 'InnoDB' init function returned error.
[ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed.
[ERROR] Unknown/unsupported storage engine: InnoDB
[ERROR] Aborting
問題找到,分配不了足夠的記憶體,
vim /etc/my.cnf
innodb_buffer_pool_size=100M
service mysqld start --------ok
搞定