MySQL記憶體不足的解決方法:1、增加swap交換空間,程式碼為【dd if=/dev/zero of=/swapfile bs=1M count=1024】;2、增加自動掛載,在檔案【/etc/fstab中加入/swapfileswap】。
MySQL記憶體不足的解決方法:
1、啟動MySQL時一直不成功,檢視錯誤紀錄檔 /var/log/mysql/error.log
2、主要的錯誤資訊有如下幾條:
[ERROR] InnoDB: mmap(136151040 bytes) failed; errno 12
[ERROR] InnoDB: Cannot allocate memory for the buffer pool
[ERROR] InnoDB: Plugin initialization aborted with error Generic error
[ERROR] Plugin 'InnoDB' init function returned error.
[ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed.
[ERROR] Failed to initialize plugins.
[ERROR] Aborting
3、查詢後是因為記憶體不足,檢視記憶體
增加swap交換空間解決問題:
dd if=/dev/zero of=/swapfile bs=1M count=1024
mkswap /swapfile
swapon /swapfile
4、增加自動掛載:
在檔案/etc/fstab中加入 /swapfile swap swap defaults 0 0
service mysql start 啟動成功
5、備註:
生成空檔案
dd if=/dev/zero of=1.txt bs=1M count=2 生成一個指定大小的空檔案 if=檔名:輸入檔名 of=檔名:輸出檔名 bs=位元組大小 count=個數
更多相關免費學習推薦:(視訊)
以上就是MySQL記憶體不足怎麼辦的詳細內容,更多請關注TW511.COM其它相關文章!