With ColdFusion10 Beta already out, many of us will be wondering if there is any way ColdFusion9 and ColdFusion10 can co-exist by using any of the Web Servers available. The answer is yes, it is definitely possible. The next question which will arise is "how can it be achieved?". Well.. It can be achieved very easily by performing the steps listed below:
6. Restart Apache.
7. Configure ColdFusion10 connector to Apache by launching the wsconfig UI which is located in C:\ColdFusion10\cfusion\runtime\bin directory. Open the httpd.conf file located in the conf directory of Apache and go to the end of the file. Copy the following line "JkMountFile "C:\ColdFusion10\config\wsconfig\2\uriworkermap.properties"" and paste it in the Virtual host block(virtual host running on port 82).
8. Open mod_jk.conf file present in the conf directory of Apache and cut the below lines:
9. Paste it inside the other virtual host block(virtual host running on port 82) defined in httpd.conf file. The final Virtual host block:
10. Restart Apache.
11. Launch the ColdFusion9 administrator using:
http://<server_name>:81/CFIDE/administartor/index.cfm
Launch the ColdFusion10 administartor using:
http://<server_name>:82/CFIDE/administartor/index.cfm
where, <server_name> : localhost/IP address/uniquely defined server name.
Thus, by performing the above mentioned steps, CF9 and CF10 can co-exist together. This is very helpful as it saves the time required for multiple configuring/un-configuring ColdFusion connector to Apache. Any application which needs to be run on ColdFusion9 and ColdFusion10 simultaneously can be done easily.
- Firstly, Apache needs to be installed. It can be downloaded from the link http://httpd.apache.org/.
- After Installing Apache, a virtual host setup needs to be done. For creating Virtual Hosts in Apache, refer to my previous blog entry on "Creating Virtual Hosts in Apache" or directly click on the link http://kmaiya.blogspot.in/2011/10/creating-virtual-hosts-in-apache.html.
- For the co-existence, we can have 2 virtual hosts set up each running on port 81 and 82.
- Configure ColdFusion9 connector to Apache by launching the wsconfig UI which is located in C:\ColdFusion9\runtime\bin directory.
- After configuring the connector, open the Apache's httpd.conf file which is located in the conf directory. Search for the below text in the file:
# JRun Settings LoadModule jrun_module "C:/ColdFusion9/runtime/lib/wsconfig/1/mod_jrun22.so"JRunConfig Verbose false JRunConfig Apialloc false JRunConfig Ignoresuffixmap false JRunConfig Serverstore "C:/ColdFusion9/runtime/lib/wsconfig/1/jrunserver.store" JRunConfig Bootstrap 127.0.0.1:51011 #JRunConfig Errorurl url #JRunConfig ProxyRetryInterval 600 #JRunConfig ConnectTimeout 15 #JRunConfig RecvTimeout 300 #JRunConfig SendTimeout 15 AddHandler jrun-handler .jsp .jws .cfm .cfml .cfc .cfr .cfswf
5. Cut and paste the above section of code inside one of the virtual host block(host running on port 81) defined in httpd.conf. The final Virtual host block :
<VirtualHost *:81>
DocumentRoot "C:\Program Files (x86)\Apache Software Foundation\Apache2.2\htdocs1"
ServerAdmin www.example1.com
# JRun Settings
LoadModule jrun_module "C:/ColdFusion9/runtime/lib/wsconfig/1/mod_jrun22.so"
<IfModule mod_jrun22.c>
JRunConfig Verbose false
JRunConfig Apialloc false
JRunConfig Ignoresuffixmap false
JRunConfig Serverstore "C:/ColdFusion9/runtime/lib/wsconfig/1/jrunserver.store"
JRunConfig Bootstrap 127.0.0.1:51011
#JRunConfig Errorurl url <optionally redirect to this URL on errors>
#JRunConfig ProxyRetryInterval 600 <number of seconds to wait before trying to reconnect to unreachable clustered server>
#JRunConfig ConnectTimeout 15 <number of seconds to wait on a socket connect to a jrun server>
#JRunConfig RecvTimeout 300 <number of seconds to wait on a socket receive to a jrun server>
#JRunConfig SendTimeout 15 <number of seconds to wait on a socket send to a jrun server>
AddHandler jrun-handler .jsp .jws .cfm .cfml .cfc .cfr .cfswf
</IfModule>
</VirtualHost>
6. Restart Apache.
7. Configure ColdFusion10 connector to Apache by launching the wsconfig UI which is located in C:\ColdFusion10\cfusion\runtime\bin directory. Open the httpd.conf file located in the conf directory of Apache and go to the end of the file. Copy the following line "JkMountFile "C:\ColdFusion10\config\wsconfig\2\uriworkermap.properties"" and paste it in the Virtual host block(virtual host running on port 82).
8. Open mod_jk.conf file present in the conf directory of Apache and cut the below lines:
JkMountFile "C:\ColdFusion10\config\wsconfig\2\uriworkermap.properties"
# Select the timestamp log format
JkLogStampFormat "[%a %b %d %H:%M:%S %Y] "
AddHandler jakarta-servlet .cfm .cfml .cfc .cfr .cfswf
Alias /CFIDE "C:\ColdFusion10\cfusion\wwwroot\CFIDE"
<Directory "C:\ColdFusion10\cfusion\wwwroot\CFIDE">
Options Indexes FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
</Directory>
9. Paste it inside the other virtual host block(virtual host running on port 82) defined in httpd.conf file. The final Virtual host block:
<VirtualHost *:82>
DocumentRoot "C:\Program Files (x86)\Apache Software Foundation\Apache2.2\htdocs2"
ServerAdmin www.example2.com
# Other directives here
JkMountFile "C:\ColdFusion10\config\wsconfig\2\uriworkermap.properties"
# Select the timestamp log format
JkLogStampFormat "[%a %b %d %H:%M:%S %Y] "
AddHandler jakarta-servlet .cfm .cfml .cfc .cfr .cfswf
Alias /CFIDE "C:\ColdFusion10\cfusion\wwwroot\CFIDE"
<Directory "C:\ColdFusion10\cfusion\wwwroot\CFIDE">
Options Indexes FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
11. Launch the ColdFusion9 administrator using:
http://<server_name>:81/CFIDE/administartor/index.cfm
Launch the ColdFusion10 administartor using:
http://<server_name>:82/CFIDE/administartor/index.cfm
where, <server_name> : localhost/IP address/uniquely defined server name.
Thus, by performing the above mentioned steps, CF9 and CF10 can co-exist together. This is very helpful as it saves the time required for multiple configuring/un-configuring ColdFusion connector to Apache. Any application which needs to be run on ColdFusion9 and ColdFusion10 simultaneously can be done easily.
Hi, thanks this is really useful. I tried this method on Windows (success) and CentOS 5.x (failed).
ReplyDeleteSeems that there is Apache connector problem on CentOS 5.x (even on single CF10 installation), have you managed to configured it correctly there?
Thanks
Hi Paulus,
ReplyDeleteWe do not support ColdFusion+Apache on CentOS 5.x. You can try configuring CF+Apache on RHEL 6.
Thanks,
Kavya
Kavya,
ReplyDeleteI followed your instructions on Mac OS X. My previously working CF9 instances now point to the root of the cf install, and the CF10 instance also points to the root of the CF10 instance, ignoring the DocumentRoot directive. Have you seen this before? Any ideas as to how I might be able to proceed? As a side note, this worked fine on a Windows laptop, just not Mac.
I uninstalled the beta version and did a fresh install of CF10 and it is now working. Not sure if it was due to the beta version or some other configuration, but its working, and that makes me happy. Thanks!
DeleteThank You!
ReplyDelete
ReplyDeleteLogo is the the symbol or representation of an Organization or company that identify that organization. Logo designing is to create that symbol..Logo Desging Adobe illustrator or photoshop is a powerful tool for logo designing. A suitable logo represents the activities, motive, aim of that organization in a visual way simply.
Prediksi hk :
ReplyDeletehttp://45.32.105.226
http://45.32.105.226
http://45.32.105.226
http://45.32.105.226
http://45.32.105.226
http://45.32.105.226
http://45.32.105.226
If you're looking to lose pounds then you absolutely have to start following this brand new custom keto plan.
ReplyDeleteTo design this service, licensed nutritionists, personal trainers, and top chefs have joined together to produce keto meal plans that are efficient, suitable, price-efficient, and fun.
From their grand opening in 2019, 100's of people have already completely transformed their figure and well-being with the benefits a great keto plan can provide.
Speaking of benefits: clicking this link, you'll discover 8 scientifically-proven ones provided by the keto plan.
ReplyDeletemlb중계
ckjke orioerer
ReplyDelete토토사이트
ckejk ocoeewere
ReplyDelete먹튀검증
ckje roioeerer
ReplyDelete메이저놀이터
ckje ocioeee
온라인카지노
ReplyDeleteckejr oicerer
스탁론
ReplyDeletecj eorieerer
Thanks for such information. This is really helpful for me. you can also visit our blog: https://palmindore.in/blog/banquets-in-indore/
ReplyDeleteMallika Manivannan Novels
ReplyDeleteRamanichandran Novels
Srikala Novels
Novels Tamil
Cutting way administration is one sort of picture altering Process where we select a significant segment of a picture and cut the immaterial part Clipping way We can erase the foundation or change foundation tone to make it more alluring https://clippingpathera.com/.
ReplyDeleteThanks on your marvelous posting! I really enjoyed reading it, you’re a great author.Please visit here:
ReplyDeletePackers And Movers Jaipur
Packers And Movers Jaipur to Bhiwandi
Packers And Movers Jaipur to kolhapur
Packers And Movers Jaipur to Amravati
Packers And Movers Jaipur to Malegaon
Thanks for sharing important information.
ReplyDeleteBest Astrologer in KR Puram providing online astrology services.
Really this is very great information. Thank you.
ReplyDeleteVashikaran Astrologer in Mormugao resolves all problems and gives permanent solutions.
Your blog is very informative for us.
ReplyDeleteVisit Best Indian Astrologer in Diego Martin
Well-written information. Very impressive and to the point
ReplyDeleteHave a look at my new blog Technic Launcher License Key Crack 2023