記一次mariadb數(shù)據(jù)庫無法連接
自從自己維護(hù)blog以后,基本一個月內(nèi),都會出現(xiàn)1,2次這種錯誤,以前解決的辦法很簡單,就是把虛擬機(jī)重啟一下就可以。經(jīng)常是網(wǎng)友在微信,qq,微博提醒我blog掛掉。
剛好國慶期間碰上,就順便提高一下自己的運(yùn)維能力,看看具體的原因。
tail /var/log/mariadb/mariadb.log
看到大概的錯誤
161004 11:21:05 InnoDB: Fatal error: cannot allocate memory for the buffer pool
161004 11:21:05 [ERROR] Plugin "InnoDB" init function returned error.
161004 11:21:05 [ERROR] Plugin "InnoDB" registration as a STORAGE ENGINE failed.
161004 11:21:15 [Note] Plugin "FEEDBACK" is disabled.
161004 11:21:16 [ERROR] Unknown/unsupported storage engine: InnoDB
161004 11:21:16 [ERROR] Aborting
其實(shí)我也能猜到,肯定是數(shù)據(jù)庫的內(nèi)存使用有啥問題。
有錯誤,其實(shí)就是利用google,基本就有答案
我使用的青云的虛擬機(jī),swap分區(qū),就是1G,所以應(yīng)該也不需要創(chuàng)建。
編輯 /etc/my.cnf,
[mysqld] innodb_buffer_pool_size=64M
重啟mysql
systemctl restart mariadb
查看swap內(nèi)存使用
# free -m total used free shared buff/cache available Mem: 993 431 386 6 175 424 Swap: 1023 0 1023
查看一下啟動日志
[root@chenshake mariadb]# tail /var/log/mariadb/mariadb.log
161004 20:42:46 InnoDB: Initializing buffer pool, size = 64.0M
161004 20:42:46 InnoDB: Completed initialization of buffer pool
161004 20:42:46 InnoDB: highest supported file format is Barracuda.
161004 20:42:46 InnoDB: Waiting for the background threads to start
密切關(guān)注一下后續(xù)的效果如何。
相關(guān)文章:
1. centos編譯安裝mariadb的詳細(xì)過程2. 詳談MySQL和MariaDB區(qū)別與性能全面對比3. CentOS 7中成功安裝MariaDB的方法教程4. CentOS6.7系統(tǒng)中編譯安裝MariaDB數(shù)據(jù)庫5. debian10 mariadb安裝過程詳解6. Windows Server 2016 服務(wù)器配置指南 之 MariaDB數(shù)據(jù)庫環(huán)境搭建方法7. 目前學(xué)習(xí)到的常用命令之Mariadb8. centos中找回MariaDB數(shù)據(jù)庫root用戶權(quán)限的方法9. MariaDB的安裝與配置教程10. mariadb 在低配 VPS 上崩潰問題處理方案
