Adobe
Products

Top destinations

  • Adobe Creative Cloud
  • Creative Suite
  • Adobe Marketing Cloud
  • Acrobat
  • Photoshop
  • SiteCatalyst
  • Students
  • Elements family

Adobe Creative Cloud

  • What is Adobe Creative Cloud?
  • Design
  • Web
  • Photography
  • Video
  • Students
  • Teams
  • Enterprise
  • Educational institutions

Design and photography

  • Photoshop
  • Illustrator
  • InDesign
  • Adobe Muse
  • Lightroom

Video

  • Adobe Premiere
  • After Effects

Web development and HTML5

  • Edge Tools & Services [opens in a new window]
  • Dreamweaver
  • Gaming [opens in a new window]

Adobe Marketing Cloud

  • What is Adobe Marketing Cloud?
  • Digital analytics
  • Social marketing
  • Web experience management
  • Testing and targeting
  • Media optimization

Analytics

  • SiteCatalyst
  • Adobe Discover
  • Insight

Social

  • Adobe Social

Experience Manager

  • CQ
  • Scene7

Target

  • Test&Target
  • Recommendations
  • Search&Promote

Media Optimizer

  • AdLens
  • AudienceManager
  • AudienceResearch

Document services

  • Acrobat
  • EchoSign [opens in a new window]
  • FormsCentral [opens in a new window]
  • SendNow [opens in a new window]
  • Acrobat.com [opens in a new window]

Publishing

  • Digital Publishing Suite

  • See all products
Business solutions

By business need

  • Digital analytics
  • Digital publishing
  • Document management
  • Media optimization
  • Social marketing
  • Testing and targeting
  • Video editing and serving
  • Web development [opens in a new window]
  • Web experience management
  • See all business needs

By industry

  • Broadcast
  • Education
  • Financial services
  • Government
  • Publishing
  • Retail
  • See all industries
Support & Learning

I need help

  • Products
  • Adobe Creative Cloud
  • Adobe Marketing Cloud
  • Forums [opens in a new window]

I want to learn

  • Training and tutorials
  • Certification [opens in a new window]
  • Adobe Developer Connection
  • Adobe Design Center
  • Adobe TV [opens in a new window]
  • Adobe Marketing Center
  • Adobe Labs [opens in a new window]
Download
  • Product trials
  • Adobe Flash Player
  • Adobe Reader
  • Adobe AIR
  • See all downloads
Company
  • Careers at Adobe
  • Investor Relations
  • Newsroom
  • Privacy
  • Corporate Social Responsibility
  • Customer Showcase
  • Contact us
  • More company info
Buy
  • For personal and professional use
  • For students, educators, and staff
  • For small and medium businesses
  • Volume Licensing
  • Special offers
  • Adobe Marketing Cloud sales [opens in a new window]
Search
 
Info Sign in
Why sign in? Sign in to manage your account and access trial downloads, product extensions, community areas, and more.
Welcome,
My Adobe
My orders
My information
My preferences
My products and services
Sign out
My cart
Privacy My Adobe
Adobe
Products Sections Buy   Search  
Solutions Company
Help Learning
Sign in Sign out Privacy My Adobe
Date Date
Qty:
Subtotal
Promotions
Estimated Shipping
VAT
Calculated at checkout
Total
Checkout
ColdFusion Help / 

Disabling/enabling ColdFusion RDS on production servers

Adobe Community Help


Products Affected

  • ColdFusion

Contact support

 
By clicking Submit, you accept the Adobe Terms of Use.
 

Issue

This article describes how to disable and enable the Remote Development Service (RDS) in ColdFusion Server versions 4.5 and higher.

ColdFusion RDS allows developers to securely access remote files and data sources, and debug CFML code. Developers can use RDS through ColdFusion Studio, Homesite+, and Dreamweaver MX to access files and databases on a remote ColdFusion development server using HTTP.

RDS was designed to give ColdFusion users a mechanism for remote development via HTTP, thereby eliminating the need for more cumbersome file access mechanisms, and making development across different platforms and networks significantly easier. However, for security reasons, Adobe recommends that server administrators disable the RDS service on servers that are not being explicitly used for development and servers that do not require remote file and database access. Note: Administrators should be aware that disabling the RDS service will also disable several Java applets in the ColdFusion Administrator that are used to browse the contents of the server (like when configuring a file-based data source). If this functionality in the ColdFusion Administrator is required, the RDS service can be temporarily enabled and disabled again once the server configuration has been modified.

To the top

Solution

To disable ColdFusion Remote Development Services on ColdFusion MX and higher:

In earlier versions of ColdFusion, RDS ran as a separate service or process. In ColdFusion MX, RDS is seamlessly integrated into the main service or process. To disable it, you must disable the RDSServlet mapping, as described in the following procedure.

To disable the RDSServlet mapping:

  1. Back up the web.xml file.

    This file is in the cf_root\wwwroot\WEB-INF directory on Windows

    and in the cf_root/wwwroot/WEB-INF directory on UNIX. In the J2EE configuration, this file is undercf_root/WEB-INF.
  2. Open the original web.xml file for editing.
  3. Comment out the RDSServlet mapping, as shown in the following example:

    <!--<servlet-mapping><servlet-name>RDSServlet</servlet-name><url-pattern>/CFIDE/main/ide.cfm</url-pattern></servlet-mapping> -->
  4. Save the file.
  5. Restart ColdFusion MX.




To enable ColdFusion Remote Development Services on ColdFusion MX and higher:

To enable the RDSServlet mapping:

  1. Back up the web.xml file.

    This file is in the cf_root\wwwroot\WEB-INF directory on Windows

    and in the cf_root/wwwroot/WEB-INF directory on UNIX. In the J2EE configuration, this file is undercf_root/WEB-INF.
  2. Open the original web.xml file for editing.
  3. Uncomment the RDSServlet mapping, as shown in the following example:

    <servlet-mapping><servlet-name>RDSServlet</servlet-name><url-pattern>/CFIDE/main/ide.cfm</url-pattern></servlet-mapping>
  4. Make sure the RDSServlet definition is also uncommented as follows:
    <servlet id="macromedia_servlet_8789"><servlet-name>RDSServlet</servlet-name><display-name>RDS Servlet</display-name><servlet-class>coldfusion.bootstrap.BootstrapServlet</servlet-class><init-param id="InitParam_103401311065856789"><param-name>servlet.class</param-name><param-value>coldfusion.rds.RdsFrontEndServlet</param-value></init-param></servlet>
  5. Save the file.
  6. Restart ColdFusion MX.




To disable ColdFusion Remote Development Services on ColdFusion 4.5 and 5:

On Windows NT/2000/XP/2003:

  1. Go to Control Panel Services and stop the ColdFusion RDS Service.



    (Optional). To prevent the RDS service from restarting after a system reboot, go to Control Panel Services, locate the ColdFusion RDS service, and set the Startup Type to "Manual."
  2. Go to the Start menu. Select Run. Type "regedit" and OK.
  3. Locate the registry "ServiceRunning" key entry:

    HKLM\Software\Allaire\ColdFusion\CurrentVersion\IDE\ServiceRunning =1
  4. Change the entry to zero:

    HKLM\Software\Allaire\ColdFusion\CurrentVersion\IDE\ServiceRunning =0


On UNIX (HP-UX, Solaris and Linux):

  1. In the cf_root/bin directory, edit the "start" script and change the line:

    su $CFUSER -c "env -i $ENV_LIST $CFHOME/bin/cfexec"
    to

    su $CFUSER -c "env -i $ENV_LIST $CFHOME/bin/cfexec -s"
    This prevents ColdFusion Executive from automatically starting the ColdFusion RDS service when ColdFusion is started.
  2. Save the file and stop and restart the ColdFusion services using the following commands:

    ./stop
    and then
    ./start




To enable ColdFusion Remote Development Services on ColdFusion 4.5 and 5:

On Windows NT/2000/XP/2003

  1. Go to Control Panel Services and Start the ColdFusion RDS Service.
  2. Go to Start. Select Run. Type "regedit" and click OK.
  3. Locate the registry "ServiceRunning" key entry:

    HKLM\Software\Allaire\ColdFusion\CurrentVersion\IDE\ServiceRunning =0
  4. Change the entry to one:

    HKLM\Software\Allaire\ColdFusion\CurrentVersion\IDE\ServiceRunning =1


On UNIX (HP-UX, Solaris and Linux):

  1. In the cf_root/bin directory, edit the "start" script and change the line:

    su $CFUSER -c "env -i $ENV_LIST $CFHOME/bin/cfexec -s"
    to
    su $CFUSER -c "env -i $ENV_LIST $CFHOME/bin/cfexec"
  2. Save the file and stop and re-start the ColdFusion services using the following command:

    ./stop
    and then
    ./start
To the top

Additional Information

  • Security Zone
  • "IO Error" message when attempting to "Browse Server" in ColdFusion Administrator (TechNote 18046)
Keywords: tn_17276

This work is licensed under a Creative Commons Attribution-Noncommercial-Share Alike 3.0 Unported License  Twitter™ and Facebook posts are not covered under the terms of Creative Commons.

Legal Notices   |   Online Privacy Policy

Products

  • Adobe Creative Cloud
  • Creative Suite
  • Adobe Marketing Cloud
  • Acrobat
  • Photoshop
  • Digital Publishing Suite
  • Elements family
  • SiteCatalyst
  • For education

Download

  • Product trials
  • Adobe Reader
  • Adobe Flash Player
  • Adobe AIR

Support & Learning

  • Product help
  • Forums

Buy

  • For personal and professional use
  • For students, educators, and staff
  • For small and medium businesses
  • Volume Licensing
  • Special offers

Company

  • News room
  • Partner programs
  • Corporate social responsibility
  • Career opportunities
  • Investor Relations
  • Events
  • Legal
  • Security
  • Contact Adobe
Choose your region United States (Change)
Choose your region Close

North America

Europe, Middle East and Africa

Asia Pacific

  • Canada - English
  • Canada - Français
  • Latinoamérica
  • México
  • United States

South America

  • Brasil
  • Africa - English
  • Österreich - Deutsch
  • Belgium - English
  • Belgique - Français
  • België - Nederlands
  • България
  • Hrvatska
  • Česká republika
  • Danmark
  • Eastern Europe - English
  • Eesti
  • Suomi
  • France
  • Deutschland
  • Magyarország
  • Ireland
  • Israel - English
  • ישראל - עברית
  • Italia
  • Latvija
  • Lietuva
  • Luxembourg - Deutsch
  • Luxembourg - English
  • Luxembourg - Français
  • الشرق الأوسط وشمال أفريقيا - اللغة العربية
  • Middle East and North Africa - English
  • Moyen-Orient et Afrique du Nord - Français
  • Nederland
  • Norge
  • Polska
  • Portugal
  • România
  • Россия
  • Srbija
  • Slovensko
  • Slovenija
  • España
  • Sverige
  • Schweiz - Deutsch
  • Suisse - Français
  • Svizzera - Italiano
  • Türkiye
  • Україна
  • United Kingdom
  • Australia
  • 中国
  • 中國香港特別行政區
  • Hong Kong S.A.R. of China
  • India - English
  • 日本
  • 한국
  • New Zealand
  • 台灣

Southeast Asia

  • Includes Indonesia, Malaysia, Philippines, Singapore, Thailand, and Vietnam - English

Copyright © 2013 Adobe Systems Incorporated. All rights reserved.

Terms of Use | Privacy | Cookies

Ad Choices

Reviewed by TRUSTe: site privacy statement