The fun part of the whole thing is rebuilding the coldfusion stuff up in the cloud. Not a big deal, been there done that. The only quirk to the whole thing about building a Coldfusion 9 webserver on Ubuntu 10.04 LTS is that it does not have a valid startup script, so I created my own. Its nothing fancy, but gets the job done. Enjoy
#! /bin/sh
case "$1" in
start)
echo "Starting ColdFusion9" >&2
/opt/coldfusion9/bin/coldfusion start
exit 3
;;
restart)
echo "Restarting ColdFusion9" >&2
/opt/coldfusion9/bin/coldfusion restart
exit 3
;;
stop)
echo "Stopping ColdFusion9" >&2
/opt/coldfusion9/bin/coldfusion stop
exit 3
;;
*)
echo "Usage: $0 start|stop|restart" >&2
exit 3
;;
esac
:
No comments:
Post a Comment