Wednesday, 15 July 2015

how to detach sidekiq process once started in terminal -



how to detach sidekiq process once started in terminal -

i want run sidekiq on production server, using command start process

bundle exec sidekiq -q mailer,5 -q default -e production

how detach process without stopping it, can close connection server.

the right reply lower case -d:

bundle exec sidekiq -d -q mailer,5 -q default -e production

sidekiq --help list options:

-d, --daemon daemonize process

when running -d option, sidekiq inquire log file, finish command is:

bundle exec sidekiq -d -l sidekiq.log -q mailer,5 -q default -e production

sidekiq

No comments:

Post a Comment