Skip to content

Instantly share code, notes, and snippets.

@yinheli
Last active August 29, 2015 14:17
Show Gist options
  • Save yinheli/61585ad2f5e3c6ad83b6 to your computer and use it in GitHub Desktop.
Save yinheli/61585ad2f5e3c6ad83b6 to your computer and use it in GitHub Desktop.
start haproxy
#!/bin/bash
# reload haproxy
# @author yinheli
pid=$(ps -ef|grep haproxy|grep -v grep|awk '{print $2}')
if [ -z "$pid" ]; then
./haproxy -f conf
else
./haproxy -f conf -sf $pid
fi
exit 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment