<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Coldfusion on MarkJacobsen.net</title><link>https://markjacobsen.net/tags/coldfusion/</link><description>Recent content in Coldfusion on MarkJacobsen.net</description><generator>Hugo -- gohugo.io</generator><language>en-us</language><lastBuildDate>Thu, 17 Jan 2013 04:41:50 +0000</lastBuildDate><atom:link href="https://markjacobsen.net/tags/coldfusion/index.xml" rel="self" type="application/rss+xml"/><item><title>Start ColdFusion8 on Ubuntu Server Start</title><link>https://markjacobsen.net/2013/01/start-coldfusion8-on-ubuntu-server-start/</link><pubDate>Thu, 17 Jan 2013 04:41:50 +0000</pubDate><guid>https://markjacobsen.net/2013/01/start-coldfusion8-on-ubuntu-server-start/</guid><description>&lt;p&gt;Ok, so this is not the most bleeding edge post, but hopefully useful if you need it.  Here&amp;rsquo;s what you need to do if you need to get ColdFusion8 to start on server reboot (since it doesn&amp;rsquo;t appear to install itself as a service) using Ubuntu server.&lt;/p&gt;&#10;&lt;p&gt;First, create a service script and make sure it&amp;rsquo;s executable like so&amp;hellip;&lt;/p&gt;&#10;&lt;pre&gt;&lt;code&gt;sudo touch /etc/init.d/coldfusion&#10;sudo chmod 755 /etc/init.d/coldfusion&#10;&lt;/code&gt;&lt;/pre&gt;&#10;&lt;p&gt;Next, you need to actually put something in the script&amp;hellip;&lt;/p&gt;&#10;&lt;pre&gt;&lt;code&gt;sudo nano /etc/init.d/coldfusion&#10;&lt;/code&gt;&lt;/pre&gt;&#10;&lt;p&gt;Here&amp;rsquo;s what to put in the file&amp;hellip;&lt;/p&gt;&#10;&lt;pre&gt;&lt;code&gt;#! /bin/sh&#10;&#10;### BEGIN INIT INFO&#10;# Short-Description: ColdFusion8 service&#10;### END INIT INFO&#10;&#10;file=/opt/coldfusion8/bin/coldfusion&#10;&#10;case &amp;quot;$1&amp;quot; in&#10;stop)&#10;$file stop&#10;;;&#10;status)&#10;$file status&#10;;;&#10;restart)&#10;$file restart&#10;;;&#10;*)&#10;$file start&#10;;;&#10;esac&#10;&#10;exit 0&#10;&lt;/code&gt;&lt;/pre&gt;&#10;&lt;p&gt;Finally, you need to tell Ubuntu to use your service and make it available&lt;/p&gt;&#10;&lt;pre&gt;&lt;code&gt;sudo update-rc.d coldfusion defaults&#10;&lt;/code&gt;&lt;/pre&gt;&#10;</description></item></channel></rss>