Skip to content

Instantly share code, notes, and snippets.

@phudgins
Created September 5, 2013 16:19
Show Gist options
  • Save phudgins/6452460 to your computer and use it in GitHub Desktop.
Save phudgins/6452460 to your computer and use it in GitHub Desktop.
Common commands for stopping/starting daemonized unicorn
# To start unicorn and tail log
$ foreman start && tail -f log/unicorn.log
# To stop server
$ cat tmp/pids/unicorn.pid | xargs kill -9
@sjtipton
Copy link

sjtipton commented Sep 5, 2013

+1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment