Skip to content

Instantly share code, notes, and snippets.

@runlevel5
Last active July 18, 2022 17:37
Show Gist options
  • Star 44 You must be signed in to star a gist
  • Fork 19 You must be signed in to fork a gist
  • Save runlevel5/5844933 to your computer and use it in GitHub Desktop.
Save runlevel5/5844933 to your computer and use it in GitHub Desktop.
pumactl is very broken, @nemshilov and @joneslee85 wrote this bash script replacement and it works so reliably on production server. So here it is, share with the world!
#!/usr/bin/env bash
# Simple move this file into your Rails `script` folder. Also make sure you `chmod +x puma.sh`.
# Please modify the CONSTANT variables to fit your configurations.
# The script will start with config set by $PUMA_CONFIG_FILE by default
PUMA_CONFIG_FILE=config/puma.rb
PUMA_PID_FILE=tmp/pids/puma.pid
PUMA_SOCKET=tmp/sockets/puma.sock
# check if puma process is running
puma_is_running() {
if [ -S $PUMA_SOCKET ] ; then
if [ -e $PUMA_PID_FILE ] ; then
if cat $PUMA_PID_FILE | xargs pgrep -P > /dev/null ; then
return 0
else
echo "No puma process found"
fi
else
echo "No puma pid file found"
fi
else
echo "No puma socket found"
fi
return 1
}
case "$1" in
start)
echo "Starting puma..."
rm -f $PUMA_SOCKET
if [ -e $PUMA_CONFIG_FILE ] ; then
bundle exec puma --config $PUMA_CONFIG_FILE
else
bundle exec puma --daemon --bind unix://$PUMA_SOCKET --pidfile $PUMA_PID_FILE
fi
echo "done"
;;
stop)
echo "Stopping puma..."
kill -s SIGTERM `cat $PUMA_PID_FILE`
rm -f $PUMA_PID_FILE
rm -f $PUMA_SOCKET
echo "done"
;;
restart)
if puma_is_running ; then
echo "Hot-restarting puma..."
kill -s SIGUSR2 `cat $PUMA_PID_FILE`
echo "Doublechecking the process restart..."
sleep 5
if puma_is_running ; then
echo "done"
exit 0
else
echo "Puma restart failed :/"
fi
fi
echo "Trying cold reboot"
script/puma.sh start
;;
*)
echo "Usage: script/puma.sh {start|stop|restart}" >&2
;;
esac
@Aslan
Copy link

Aslan commented Jun 29, 2013

Thanks for this script. it works fine except i had to change SIGUSR to 12. otherwise it was throwing the following message:
kill: invalid signal number or name: SIGUSR2
any idea why that is happening?

@ivanxuu
Copy link

ivanxuu commented Jul 4, 2013

What I did to solve the "kill: invalid signal number or name: SIGUSR2" was to change:

  kill -s SIGUSR2 `cat $PUMA_PID_FILE`

to either this if you are running the script as root

  su -l yourusername -c " kill -s SIGUSR2 `cat $PUMA_PID_FILE` "

or if you prefer this if you are running the script as the owner of the rails app

   /bin/bash --login -c " kill -s SIGUSR2 `cat $PUMA_PID_FILE` "

In my case it's running from /etc/init.d/puma.sh at boot time. Take a look at my modified fork and use it if you need.

@runlevel5
Copy link
Author

@asian @ihinojal Thanks for the feedback, it was due to sh, bash has this sorted out nicely. I've just modified the script to use bash instead

@nmccready
Copy link

Is pumactl still considered incomplete 3 months later?

@dachi-gh
Copy link

dachi-gh commented Feb 9, 2014

Is pumactl still considered incomplete 3 months later?

I want to know too

@Sovietaced
Copy link

pumactl is still broken

@fliiiix
Copy link

fliiiix commented Mar 30, 2014

thanks ❤️

@spacechurro
Copy link

I wasn't having any luck with the pid check at https://gist.github.com/joneslee85/5844933#file-puma-sh-L16. I ended up having to change this to:

if ps -p `cat $PUMA_PID_FILE` > /dev/null; then

@ktaragorn
Copy link

Fork of a fork - https://gist.github.com/ktaragorn/462ee4afcb386a2d85c5. This takes @ihinojal 's fork, modifies it to allow for a tcp:// bind address, and also incorporate @spacechurro 's fix for the PID check

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