[CentOS] sidekiq receives SIGHUP when started via ssh -t

Wed Oct 18 23:15:53 UTC 2017
Yuri Kanivetsky <yuri.kanivetsky at gmail.com>

Hi,

I've just found the reason. From what I can see, on the server the
process received SIGHUP right after fork. It had no time to switch to
new session and detach from controlling terminal. And to work around
that one might add sleep to the end:

ssh user at example.com -t '. ~/.bash_profile && rvm 2.3.1 && cd 1 &&
./1.rb && sleep 1'

or wait for pid file to be created, whatever.

Regards,
Yuri