deploy with capistrano failing

前端 未结 4 848
无人及你
无人及你 2020-12-29 15:48

I have a capistrano taks like this

require \"bundler/capistrano\"

set :application, \"cloudoc\"
set :repository,  \"git@github.com:luizkowalski/cloudoc.git\         


        
4条回答
  •  粉色の甜心
    2020-12-29 16:12

    The kernel actively kills processes when RAM is short and processes use to much RAM. You can use dmesg to look if the process got killed by the kernel. Messages like this will appear:

    [ 3380.091822] Out of memory: Kill process 1075 (ruby1.9.1) score 382 or sacrifice child
    

    You can activate swap space or shut down other processes. If you are running on a VPS, please make sure you have enough RAM available. The simplest solution - if the problems is really a shortage of free RAM - is just buy more RAM.

提交回复
热议问题