I don't have CF server running at startup and I always forget what the command is to run CF.
Please note these scripts are only meant for local development - 'NOT PRODUCTION USE'
# start/stop coldfusion sudo /opt/coldfusion8/bin/coldfusion start sudo /opt/coldfusion8/bin/coldfusion stop sudo /opt/coldfusion8/bin/coldfusion restart #start/stop apache sudo /etc/init.d/apache2 start sudo /etc/init.d/apache2 stop sudo /etc/init.d/apache2 restart #!/bin/bash read -p "Press ENTER to start ColdFusion and Apache (must be root!)" /etc/init.d/apache2 start /opt/coldfusion8/bin/coldfusion start read -p "Services started. Press ENTER to continue..."