zoukankan      html  css  js  c++  java
  • 小内存虚拟主机上的MySql (MariaDB) 宕机原因

    原文:

    MySql (MariaDB) crashes on small RAM VPS, what to do

    Recently I encountered one weird problem, my MariaDB database started to crash from time to time on one of my small RAM (512mb) virtual private servers. After some short googling I found out what what is potential problem with MariaDB on small RAM machines and how to fix it.

    First of all, if you have this kind of problem, check MariaDB logs

    tail -n 100 /var/log/mariadb/mariadb.log
    you may find something like this:

    160608 12:08:05 InnoDB: Completed initialization of buffer pool
    160608 12:08:05 InnoDB: Fatal error: cannot allocate memory for the buffer pool
    160608 12:08:05 [ERROR] Plugin 'InnoDB' init function returned error.
    160608 12:08:05 [ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed.
    160608 12:08:05 [ERROR] mysqld: Out of memory (Needed 128917504 bytes)
    After some research I figured out that mysql require a lot resources for performance schema, and disabling it will help on small memory machines. 

    sudo vim /etc/my.cnf
    add

    performance_schema = off
    to section

    [mysqld]
    To ensure that database server will restart on crash, on OS with Systemd like CentOS 7 you need to do following

    Open following file for edit

    sudo vim /etc/systemd/system/mariadb.service
    and add following lines

    .include /lib/systemd/system/mariadb.service

    [Service]
    Restart=always
    RestartSec=3
    Then you need to restart reload Systemd configuration

    sudo systemctl daemon-reload
    and restart MariaDB service

    systemctl restart mariadb
    To ensure that Systemd restarts service you can do following:

    ps -ef|grep maria
    You will see something like this

    mysql 26647 26368 0 Jun12 ? 00:06:22 /usr/libexec/mysqld ....
    Try to kill the process using

    kill 26647
    Wait 3 seconds and check if MariaDB started again

    ps -ef|grep maria

    链接自:

    https://vedmant.com/mysql-mariadb-crashes-small-ram-vps/

  • 相关阅读:
    【springboot】处理【跨域】请求
    【JPA】【概念】JPA概念解析:CascadeType(各种级联操作)详解
    【JPA】关于SpringBoot使用JPA的更新操作(save方法和原生SQL方法)
    jpa @query上使用if判断
    【Jpa】动态多表if多条件联合查询,并对查询结果进行分页
    phpstorm2020.1 免注册
    uniapp实现多语言切换
    vue进页面input自动获取焦点
    vue-cli4使用less全局变量
    用js实现隐藏手机号中间四位
  • 原文地址:https://www.cnblogs.com/leooys/p/8667936.html
Copyright © 2011-2022 走看看