Unicorn unable to write pid file

前端 未结 3 1206
醉酒成梦
醉酒成梦 2021-02-02 13:58

I am using deploying a Ruby on Rails app to a Linode VPS using Capistrano. I am using Unicorn as the application server and Nginx as the proxy. My problem is that I am not able

3条回答
  •  终归单人心
    2021-02-02 14:30

    Actually, the error message has already told you why:

    directory for pid=/home/deploy/apps/shared/pids/unicorn.pid not writable

    So, does the directory /home/deploy/apps/shared/pids exist? If not, you should call mkdir to create it.

提交回复
热议问题