$ cd /home/webapps2/vertex
$ unicorn_rails -c config/unicorn.rb
$ bundle exec sidekiq
$ sudo service nginx restart
# Redis should always be running, but in case its not and you have the permissions, I believe this is how you would start it.
$ sudo service redis start
$ ps -ef | grep unicorn
$ ps -ef | grep sidekiq
$ kill 12345 (etc)
$ sudo service nginx stop
Thanks! -Seth