<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Sebastian Mogilowskis Blog &#187; Coldfusion 8</title>
	<atom:link href="http://www.mogilowski.net/lang/en-us/tag/coldfusion-8/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mogilowski.net</link>
	<description>Just another blog about administration, linux and other stuff</description>
	<lastBuildDate>Thu, 26 Apr 2012 06:44:10 +0000</lastBuildDate>
	<language>en-us</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Deploy Adobe Coldfusion 8 on Tomcat 6 in a virtual host environment</title>
		<link>http://www.mogilowski.net/lang/en-us/2008/11/24/deploy-adobe-coldfusion-8-on-tomcat-6-in-a-virtual-host-environment</link>
		<comments>http://www.mogilowski.net/lang/en-us/2008/11/24/deploy-adobe-coldfusion-8-on-tomcat-6-in-a-virtual-host-environment#comments</comments>
		<pubDate>Mon, 24 Nov 2008 21:39:42 +0000</pubDate>
		<dc:creator>sebastian</dc:creator>
				<category><![CDATA[Coldfusion]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[2]]></category>
		<category><![CDATA[6]]></category>
		<category><![CDATA[8]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[apche2]]></category>
		<category><![CDATA[Coldfusion 8]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[host]]></category>
		<category><![CDATA[hosts]]></category>
		<category><![CDATA[lenny]]></category>
		<category><![CDATA[tomcat]]></category>
		<category><![CDATA[virtual]]></category>
		<category><![CDATA[virtualhost]]></category>
		<category><![CDATA[virtualhosts]]></category>

		<guid isPermaLink="false">http://www.mogilowski.net/?p=145&#038;lang=de-de</guid>
		<description><![CDATA[This article describes how to deploy the Adobe Coldfusion 8 server on Tomcat in a virtual hosts environment. Please read my Apache Tomcat 6 Article for the base setup. If you install the coldfusion server in seperate virtual hosts, each will have an own coldfusion administrator with own settings. 1. Download First download the coldfusion-801-lin.bin [...]]]></description>
			<content:encoded><![CDATA[<p><span lang="en-us">This article describes how to deploy the Adobe Coldfusion 8 server on Tomcat in a virtual hosts environment. Please read my <a title="Apache Tomcat6 " href="http//:www.mogilowski.net/?p=121" target="_blank">Apache Tomcat 6 Article</a> for the base setup.</span></p>
<p><span lang="en-us">If you install the coldfusion server in seperate virtual hosts, each will have an own coldfusion administrator with own settings.</span></p>
<h3>1. Download</h3>
<p><span lang="en-us">First download the coldfusion-801-lin.bin (or coldfusion-801-lin64.bin for 64-Bit) installer from the <a title="Adobe Website" href="http://www.adobe.com" target="_blank">Adobe Website</a>.</span></p>
<pre>
wget http://trials.adobe.com/Applications/ColdFusion/801WWE/coldfusion-801-lin64.bin
chmod +x coldfusion-801-lin64.bin
</pre>
<h3><span lang="en-us">2. Prepare system</span></h3>
<h3><span lang="en-us">2.1 Install libraries</span></h3>
<p><span lang="en-us">Coldfusion need some extra libraries for the installation:</span></p>
<pre>
aptitude install libstdc++6 libstdc++5
ln -s /usr/lib/libstdc++-libc6.2-2.so.3 /usr/lib/libstdc++-libc6.1-1.so.2
</pre>
<h3><span lang="en-us">2.2 Modify the virtual host in tomcat</span></h3>
<pre>
vim /opt/tomcat/conf/server.xml
</pre>
<pre>
&#60;!-- www.testsrv.local --&#62;
&#60;host name=&#34;www.testsrv.local&#34; appBase=&#34;/var/www/vhost1/htdocs&#34; unpackWARs=&#34;true&#34; autoDeploy=&#34;true&#34;&#62;
    &#60;context path=&#34;&#34; docBase=&#34;cfusion&#34; debug=&#34;0&#34; reloadable=&#34;true&#34;/&#62;
    &#60;valve className=&#34;org.apache.catalina.valves.AccessLogValve&#34; directory=&#34;/var/www/vhost1/logs&#34;  prefix=&#34;tomcat_access_&#34; suffix=&#34;.log&#34; pattern=&#34;common&#34; resolveHosts=&#34;false&#34;/&#62;
&#60;/host&#62;
</pre>
<h3><span lang="en-us">2.3 Modify the virtual host in apache</span></h3>
<pre>
vim /etc/apache2/sites-enabled/vhost1
</pre>
<pre>
&#60;virtualhost www.testsrv.local:80&#62;
    JkMount /*.cfm default
    JkMount /*.cfc default
    JkMount /*.cfchart default
    DirectoryIndex index.cfm index.html index.htm
    ServerName www.testsrv.local
    ServerAdmin servermaster@testsrv.local
    DocumentRoot /var/www/vhost1/htdocs/cfusion
    ErrorLog /var/www/vhost1/logs/error.log
    CustomLog /var/www/vhost1/logs/access.log common
    &#60;directory /var/www/vhost1/htdocs/cfusion&#62;
        Options -Indexes
    &#60;/directory&#62;
    &#60;directory /var/www/vhost1/htdocs/cfusion/WEB-INF&#62;
        Options -Indexes
        AllowOverride None
        deny from all
    &#60;/directory&#62;
    &#60;directory /var/www/vhost1/htdocs/cfusion/META-INF&#62;
       Options -Indexes
       AllowOverride None
       deny from all
    &#60;/directory&#62;
&#60;/virtualhost&#62;
</pre>
<p><em><span lang="en-us">Note: You should restrict the access to the CFIDE folder, too. With an .htaccess file for example.</span></em></p>
<h3><span lang="en-us">3. Create WAR file</span></h3>
<pre>
./coldfusion-801-lin64.bin
</pre>
<p><span lang="en-us">Select J2EE configuration (WAR file)<br />
This will create a cfusion.war package in /opt/coldfusion8/.</span></p>
<h3><span lang="en-us">4. Deploy the WAR file to a virtual host</span></h3>
<pre>
cp /opt/coldfusion8/cfusion.war /var/www/vhost1/htdocs/
</pre>
<p><em><span lang="en-us">Note: Tomcat will unpack this WAR file and create the cfusion diretory. After that, you can delete the WAR file.</span></em></p>
<h3><span lang="en-us">5. Apply configuration</span></h3>
<pre>
/etc/init.d/tomcat restart
/etc/init.d/apache2 reload
</pre>
<h3><span lang="en-us">6. Complete Coldfusion installation</span></h3>
<p><span lang="en-us">Now you can access the CF Administrator with your browser:</span></p>
<p>http://www.testsrv.local/CFIDE/administrator/index.cfm</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mogilowski.net/lang/en-us/2008/11/24/deploy-adobe-coldfusion-8-on-tomcat-6-in-a-virtual-host-environment/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adobe Coldfusion 8 &#8211; Ubuntu Hardy Heron 8.04</title>
		<link>http://www.mogilowski.net/lang/en-us/2008/05/21/adobe-coldfusion-8-unter-ubuntu-hardy-heron-804</link>
		<comments>http://www.mogilowski.net/lang/en-us/2008/05/21/adobe-coldfusion-8-unter-ubuntu-hardy-heron-804#comments</comments>
		<pubDate>Wed, 21 May 2008 07:55:21 +0000</pubDate>
		<dc:creator>sebastian</dc:creator>
				<category><![CDATA[Coldfusion]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[8.04]]></category>
		<category><![CDATA[Coldfusion 8]]></category>
		<category><![CDATA[hardy]]></category>
		<category><![CDATA[hardy heron]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.mogilowski.net/?p=20</guid>
		<description><![CDATA[You can download Adobe Coldfusion 8 as an 30 day test version or developer version from the Adobe Website. www.adobe.com Make sure you have installed and configurated the Apache 2 webserver. Before starting the coldfusion installer, you need the following pakets: sudo aptitude install libstdc++5 libstdc++6 After that, you need an symlink for the libc6 [...]]]></description>
			<content:encoded><![CDATA[

<p><span lang="en-us"><br />
You can download Adobe Coldfusion 8 as an 30 day test version or developer version from the Adobe Website. <a title="www.adobe.com" href="http://www.adobe.com" target="_blank">www.adobe.com</a></span></p>
<p><span lang="en-us">Make sure you have installed and configurated the Apache 2 webserver.</span></p>
<p><span lang="en-us">Before starting the coldfusion installer, you need the following pakets:</span></p>
<pre>sudo aptitude install libstdc++5 libstdc++6</pre>
<p><br />
<span lang="en-us">After that, you need an symlink for the libc6 library:</span></p>
<pre>sudo ln -s /usr/lib/libstdc++-libc6.2-2.so.3 /usr/lib/libstdc++-libc6.1-1.so.2</pre>
<p><br />
<span lang="en-us">Now you can start the linux installer, which you downloaded from the Adobe website.</span></p>
<pre>sudo chmod +x coldfusion-801-lin.bin
sudo ./coldfusion-801-lin.bin</pre>
<p><br />
<span lang="en-us">The installer asks you several questions. One of them is the installationpath. I choose &#8220;/opt/coldfusion&#8221;:</span></p>
<pre>CHOOSE LOCALE BY NUMBER: 1
PRESS &#60;ENTER&#62; TO CONTINUE: &#60;ENTER&#62;
PRESS &#60;ENTER&#62; TO CONTINUE: &#60;ENTER&#62;
...
DO YOU ACCEPT THE TERMS OF THIS LICENSE AGREEMENT? (Y/N): Y
Installation Choice: 3 (Developer Edition)
Choose one of the following options:: 1 (Server configuration)
ENTER THE NUMBER FOR YOUR CHOICE, OR PRESS &#60;ENTER&#62; TO ACCEPT THE DEFAULT: 2
Select an option: 2 (remove "Adobe LiveCycle Data Services ES")
Select an option: 5
ENTER AN ABSOLUTE PATH, OR PRESS &#60;ENTER&#62; TO ACCEPT THE DEFAULT: /opt/coldfusion
INSTALL FOLDER IS: /opt/coldfusion IS THIS CORRECT? (Y/N): Y
ENTER THE NUMBER FOR YOUR CHOICE, OR PRESS &#60;ENTER&#62; TO ACCEPT THE DEFAULT: 2
Configure Webserver: 1 (Add Web Server Configuration)
Select "Apache" 1
Directory: /etc/apache2
File: /usr/sbin/apache2
File: /etc/init.d/apache2
Choice: 4 (Continue with installation)
Directory: (DEFAULT: /etc/htdocs): /var/www
User Name: (DEFAULT: nobody): &#60;ENTER&#62;
Password: &#60;Your custom CF Password&#62;
Enable RDS  (Y/N): Y
Password: &#60;Your custom CF Password&#62;
PRESS &#60;ENTER&#62; TO CONTINUE: &#60;ENTER&#62;
Press Enter to exit the installer: &#60;ENTER&#62;</pre>
<p><br />
<span lang="en-us">After the installation you can start the coldfusion server with:</span></p>
<pre>sudo /opt/coldfusion/bin/coldfusion start</pre>
<p><br />
<span lang="en-us">To run the coldfusion server with the system you have to copy and install the init-script:</span></p>
<pre>sudo cp /opt/coldfusion/bin/coldfusion /etc/init.d
sudo update-rc.d coldfusion defaults</pre>
<p><br />
<span lang="en-us">The coldfusion server is now installed on your system. The configuration and updating works over the coldfusion administration. (http://SERVER/CFIDE/administrator/index.cfm)</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mogilowski.net/lang/en-us/2008/05/21/adobe-coldfusion-8-unter-ubuntu-hardy-heron-804/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using apc
Database Caching 29/56 queries in 0.044 seconds using apc
Object Caching 599/630 objects using apc

Served from: www.mogilowski.net @ 2012-05-22 17:43:18 -->
