cPanel - Apache configuration for Coldfusion 9



If there is any problems in connecting Coldfusion9 with apache in cPanel Server, you have to go through the following configurations to sort out the problem.


1. SELinux must be disabled in the server.
 
   /etc/selinux/config
 
   SELINUX=disabled

2. Check jrun module is loaded with Apache. If the result of following commmand is null do the step 3 and check again.
 
   root@server [~]# httpd -M | grep jrun
   Syntax OK
   jrun_module (shared)

3. The following script is used to build jrun module.
   root@server [~]# /opt/coldfusion9/runtime/lib/wsconfig/1/build_jrun22


   In order to load jrun_module with Apache, the following entries must be added in the httpd.conf.
   Adobe ColdFusion 9 JRun Module Connector for Apache httpd.conf is as follows.
 
   --------------------------------------------------------------------------------------------------------------------------------

   # JRun Settings Start

   <IfModule prefork.c>
       LoadModule jrun_module /opt/coldfusion9/runtime/lib/wsconfig/1/mod_jrun22.so
   </IfModule>


   <IfModule mod_jrun22.c>
      JRunConfig Verbose false
      JRunConfig Apialloc false
      JRunConfig Ignoresuffixmap false
      JRunConfig Serverstore /opt/coldfusion9/runtime/lib/wsconfig/1/jrunserver.store
      JRunConfig Bootstrap 127.0.0.1:51800
      #JRunConfig Errorurl url <optionally redirect to this URL on errors>
    #JRunConfig ProxyRetryInterval 600 <no. 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>


   <IfModule mime_module>
      TypesConfig conf/mime.types
      AddType application/x-compress .Z
      AddType application/x-gzip .gz .tgz
 
      AddType application/vnd.adobe.air-application-installer-package+zip .air

   </IfModule>

   # JRun Settings End
 
  ---------------------------------------------------------------------------------------------------------------------------------


  There will be a 'mime_module' section in the httpd.conf. You just need to make sure that the following line is added in that section. If it is not there, just add those line in it.

  AddType application/vnd.adobe.air-application-installer-package+zip .air

  Note:-
  jrun module's .so file is different in different apache versions. So please note the location and name of .so file before adding it to httpd.conf file.
  The above configuration changes are based on Apache 2.x
  /opt/coldfusion9/runtime/lib/wsconfig/1/mod_jrun.so (Apache 1.3.x)
  /opt/coldfusion9/runtime/lib/wsconfig/1/mod_jrun20.so (Apache 2.0)
  /opt/coldfusion9/runtime/lib/wsconfig/1/mod_jrun22.so (Apache 2.x)


4. Direct modifications to the Apache configuration file may be lost upon subsequent regeneration of the configuration file.
   To have modifications retained, all modifications must be checked into the configuration system by running: /usr/local/cpanel/bin/apache_conf_distiller --update
   Create a backup copy of current httpd.conf before it.
 
   cp /usr/local/apache/conf/httpd.conf /usr/local/apache/conf/httpd.conf.bak

   /usr/local/cpanel/bin/apache_conf_distiller --update

   To see if your changes will be conserved, regenerate the Apache configuration file by running:
   /scripts/rebuildhttpdconf

5. There is a apache connector script used in coldfusion, /opt/coldfusion9/bin/connectors/apache_connector.sh
   It is look like as the following.
 
   --------------------------------------------------------------------------------------
   #!/bin/sh

   #
   # Configure the Apache connector.
   # -dir should be the *directory* which contains httpd.conf
   # -bin should be the path to the apache *executable*
   # -script should be the path to the script which is used to
   # start/stop apache
   #
   ../../runtime/bin/wsconfig \
   -server coldfusion \
        -ws apache \
   -dir /etc/httpd/conf \
   -bin /usr/sbin/httpd \
   -script /etc/init.d/httpd \
     -coldfusion

    exit $#
   ---------------------------------------------------------------------------------------------

   Make sure that the parameters, dir, bin and script are given as mentioned in the commented parts of the script.

   Check again jrun module is loaded with Apache.
   root@server [~]# httpd -M | grep jrun

6. Finally check colfusion binary file, /etc/init.d/coldfusion_9.
 
  .
  .
  .
  .
  CONNECTOR=""
  RUNTIME_USER=""nobody""
  JAVA_HOME="/opt/coldfusion9/runtime/jre"
  JAVA_EXECUTABLE="/opt/coldfusion9/runtime/jre/bin/java"
  DOCROOT="/usr/local/apache/htdocs"
  CF_DIR="/opt/coldfusion9"
  .
  .
  .
  .


  Note:-
  All the above configurations are based on default installation of colfusion and apache.
  If you have changed installation directory, you have to replace '/opt/coldfusion9' with the new directory.
  Here it is assumed that Coldfusion installed on /opt/coldfusion9 directory.

  You can check currently loaded apache configration using the command, httpd -V

  In a cPanel server, /etc/httpd is a symbolic link to /usr/local/apache/ so it can be used interchangeably.
  root@server [~]# ll /etc/httpd
  lrwxrwxrwx 1 root root 17 Jan  4  2011 /etc/httpd -> /usr/local/apache/

  /usr/sbin/httpd is a symbolic link to /usr/local/apache/bin/apachectl so it can be used interchangeably.
  root@server [~]# ll /usr/sbin/httpd
  lrwxrwxrwx 1 root root 31 Jan  4  2011 /usr/sbin/httpd -> /usr/local/apache/bin/apachectl*

Install littleutils(opt-jpg, opt-png, opt-gif) on CentOS 32/64 bit server



What is littleutils?

        Littleutils is pack of small useful utilities. The littleutils include a duplicate file finder (repeats), image optimizers (opt-jpg, opt-png, opt-gif, recomp-jpg), file rename tools (lowercase, uppercase, pren), archive recompressors (to-gzip, to-bzip, to-7zip, to-lzma, to-lzip, to-xz), a tempfile utility (tempname), file property tools (filedate, filemode, filenode, fileown, filesize, and lrealpath), and others.


1. Login to server as root user.

     # cd /usr/local/src

     # wget http://apt.sw.be/redhat/el6/en/i386/rpmforge/RPMS/rpmforge-release-0.5.2-2.el6.rf.i686.rpm
     # rpm -ivh rpmforge-release-0.5.2-2.el6.rf.i686.rpm
       -To download and install 32 bit rpmforge repository


     # wget http://apt.sw.be/redhat/el6/en/x86_64/rpmforge/RPMS/rpmforge-release-0.5.2-1.el6.rf.x86_64.rpm
     # rpm -ivh rpmforge-release-0.5.2-2.el6.rf.x86_64.rpm
     -To download and install 64 bit rpmforge repository

2. Install Dependencies

    # yum install gcc libpng libpng-devel gifsicle pngcrush p7zip lzip

3. Download and Extract the littleutils package

    # wget http://space.dl.sourceforge.net/project/littleutils/littleutils-source/1.0.26/littleutils-1.0.26.tar.bz2
    # tar -jxf littleutils-1.0.26.tar.bz2

4. Configure and install

    # cd littleutils-1.0.26
    # ./configure
    # make
    # make install
    # make install-extra


To Verify the desired binary files were created:


root@server [/usr/local/bin]# which to-xz
/usr/local/bin/to-xz
root@server [/usr/local/bin]# which opt-jpg
/usr/local/bin/opt-jpg
root@server [/usr/local/bin]# which opt-png
/usr/local/bin/opt-png
root@server [/usr/local/bin]# which lowercase

/usr/local/bin/lowercase


Install eAccelerator in Debian 6


Install eAccelerator in Debian 6

1. Download and Extract  eAccelerator package

    # cd /tmp
    # wget http://www.debiantutorials.com/static/eaccelerator-0.9.6.1.tar.bz2
    # tar -xvjf eaccelerator-0.9.6.1.tar.bz2

2. Prepare for compiling it

    # apt-get install php5-dev make
    # cd eaccelerator-0.9.6.1
    # phpize

3. To Compile

    # ./configure
    # make
    # make install

4. Add configuration for eAccelerator

    # vi /etc/php5/conf.d/eaccelerator.ini

           extension="eaccelerator.so"

           eaccelerator.shm_size="16"
           eaccelerator.cache_dir="/var/cache/eaccelerator"
           eaccelerator.enable="1"
           eaccelerator.optimizer="1"
           eaccelerator.check_mtime="1"
           eaccelerator.debug="0"
           eaccelerator.filter=""
           eaccelerator.shm_max="0"
           eaccelerator.shm_ttl="0"
           eaccelerator.shm_prune_period="0"
           eaccelerator.shm_only="0"
           eaccelerator.compress="1"
           eaccelerator.compress_level="9"

5.Create the cache directory

   # mkdir -p /var/cache/eaccelerator
   # chmod 0777 /var/cache/eaccelerator

6. Restart Apache2

    # /etc/init.d/apache2 restart



Kloxo Installation


Kloxo Installation:

A dedicated or virtual server running CentOS or Red Hat EL 5.x. CentOS 6.x is not currently supported.
Also, make sure the ports 7778/tcp and 7777/tcp are open in your server firewall or you won't be able to connect to Kloxo web panel when the install completes.


If you have enabled SELinux, you must disable it before installation.

1. Login as root user in the server.

2. root@server [~]# setenforce 0

Kloxo installation consists of downloading kloxo-installer.sh from download.lxcenter.org and executing it as root. The script will present you with a few questions and sometimes ask for a password (enter your root password).

If you don't have MySQL server already installed,

3. root@server [~]# wget http://download.lxcenter.org/download/kloxo/production/kloxo-installer.sh

4. root@server [~]# sh ./kloxo-installer.sh --type=master


If you already have MySQL installed and set a root password,

3. root@server [~]# wget http://download.lxcenter.org/download/kloxo/production/kloxo-installer.sh

4. root@server [~]# sh ./kloxo-installer.sh --type=master --db-rootpassword=PASSWORD


You can use the URL given below to access Kloxo.

http://<Server IP or Domain>:7778
username: admin
password: admin

Reference:-


Cpanel - FTP Limiting 2000 file listing in FTP client


Error:

In a cPanel server with pure-ftpd, when a directory contains more than 2000 files, On FTP Client like FileZilla, getting following error,

150 Accepted data connection
226-Options: -a -l
226 Output truncated to 2000 matches

Solution:

To correct this problem, edit pure-ftpd configuration file at /etc/pure-ftpd.conf and modify value of LimitRecursion, by default, it is set to 2000.

LimitRecursion 2000 8 <----- change this line to the following.

LimitRecursion 20000 8

LimitRecursion <-----'ls' recursion limits.
20000               <-----Maximum number of files to be displayed.
                      <-----Maximum subdirectories depth.


Now upto 20000 files will listed by FTP Client. To make these changes in effect, you have to restart pure-ftpd.


root@server [~]# /etc/init.d/pure-ftpd restart


Kloxo - How to Open an Additional Port For Mail (587)



Check Whether a Server Listen on a Port


 # telnet <IP or Domain> 587
     Trying xxx.xxx.xxx.xxx...
     telnet: Unable to connect to remote host: Connection refused


If you are getting the above response, that particular port is not listening in the server.

To Open Port For Sending Mail

Kloxo by default has Qmail as mail service..
There will not be any affect when you open a port using Iptables.

You have to open a port as like follows in a Kloxo-Qmail server.


1. Login to Kloxo as Admin user.
2. Web - Mail -Database >> Server Mail Settings
3. You can see "Additional Smtp Port" under Server Mail Settings.
4. Enter the new port number there and click 'Update' button.


You can verify whether the port is open or not by the following command.

root@localhost [~]# telnet example.com 587
                  Trying xxx.xxx.xxx.xxx...
                  Connected to example.com.
                  Escape character is '^]'.
                  220-server.example.com ESMTP Exim 4.80 #2 Fri, 12 Oct 2012 08:55:12 -0700
                  220-We do not authorize the use of this system to transport unsolicited,
                  220 and/or bulk e-mail.




You can use the following command to check all the LISTEN ports in the server.
Login to the server, then issue the following command

root@server [~]# netstat -ntul
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address        Foreign Address   State    
tcp        0      0 0.0.0.0:22                    0.0.0.0:*                   LISTEN    
tcp        0      0 0.0.0.0:7778                0.0.0.0:*                   LISTEN    
tcp        0      0 0.0.0.0:995                  0.0.0.0:*                   LISTEN    
tcp        0      0 0.0.0.0:2087                0.0.0.0:*                   LISTEN  
tcp        0      0 0.0.0.0:3306                0.0.0.0:*                   LISTEN    
tcp        0      0 0.0.0.0:587                  0.0.0.0:*                   LISTEN    
tcp        0      0 0.0.0.0:110                  0.0.0.0:*                   LISTEN    
tcp        0      0 127.0.0.1:783              0.0.0.0:*                   LISTEN    
tcp        0      0 0.0.0.0:143                  0.0.0.0:*                   LISTEN    
tcp        0      0 0.0.0.0:1167                0.0.0.0:*                   LISTEN    
tcp        0      0 0.0.0.0:2095                0.0.0.0:*                   LISTEN    
tcp        0      0 0.0.0.0:80                    0.0.0.0:*                   LISTEN    
tcp        0      0 0.0.0.0:21                    0.0.0.0:*                   LISTEN    


root@server [~]# netstat -ntul | grep 587
tcp        0      0 0.0.0.0:587             0.0.0.0:*           LISTEN    
tcp        0      0 :::587                      :::*                    LISTEN



cPanel - Unlimited Quota issue in OpenVZ Containers



The Following Two Cases Have the Same Fix:-


Error-Case 1:-

safe_userchgid error in WHM

If you are using OpenVZ container(VPS) you may encounter the following error in WHM when you create new accounts.

safe_userchgid: chown: /home/vps/etc: Permission denied at /usr/local/cpanel/Cpanel/SafetyBits.pm line 93.
Cpanel::SafetyBits::safe_userchgid(517, 12, '/home/vps/etc') called at /usr/local/cpanel/Whostmgr/Accounts/Create.pm line 846
Whostmgr::Accounts::Create::_wwwacct('dkim', 1, 'mxcheck', 'auto', 'spf', 1, 'maxftp', 'n', ...) called at /usr/local/cpanel/Whostmgr/Accounts/Create.pm line 1849
Whostmgr::Accounts::Create::__createaccount('mxcheck', 'auto', 'dkim', 1, 'spf', 1, 'language', 'en', ...) called at /usr/local/cpanel/Whostmgr/Accounts/Create.pm line 1899
Whostmgr::Accounts::Create::_createaccount('mxcheck', 'auto', 'dkim', 1, 'spf', 1, 'language', 'en', ...) called at whostmgr/bin/whostmgr5 line 565
main::wwwacct() called at whostmgr/bin/whostmgr5 line 214

It is the issue in settings the quotaugidlimit value for your VPS. You have to increase quotaugidlimit value to solve this issue.


Error-Case 2:-

When you create new accounts in cPanel/WHM its Quota is shown as Unlimited.
It will not change even if you run /scripts/fixquotas.


Solution:

It is the issue in setting up the quotaugidlimit value for that particular VPS.
In order to fix the issues shown above, you need root access to the Hardware Node (HN) of that particular VPS.

You can fix this issue by following the steps shown below.

1. Login to HN as root user.

2. [root@HN ~] # vzlist -a | grep <IP of VPS>
                  <VPSID>         59 running   <IP>  server.example.com

3. [root@HN ~] # vzctl stop <VPSID>

4. [root@HN ~] # vzctl set <VPSID> --quotaugidlimit 1000 --save
                  CT configuration saved to /etc/vz/conf/<VPSID>.conf

5. [root@HN ~] # vzctl start <VPSID>

If you are facing Case1 issue only, try creating new accounts.

If you are facing Case2 issue you have to do the following steps too.

6. [root@HN ~] # vzctl enter <VPSID>

7. [root@vps ~] # /scripts/fixquotas

Verify the Quota in WHM whether it is updates or not.


Reference:-
http://wiki.openvz.org/User_Guide/Managing_Resources
 
 

Hide Apache, PHP and Bind Versions



To Check Apache Version:

By default, Apache will send version and modules information like mod_php, mod_perl, mod_ssl in every HTTP header.

If you want to view Apache web server version and sofware of a remote server, follow this procedure.

# telnet example.com 80

Trying example.com...
Connected to example.com.
Escape character is ‘^]'.
HEAD / HTTP/1.0 <- after this press 2 times ENTER


HTTP/1.1 200 OK
Date: Sun, 07 Oct 2012 12:57:57 GMT
Server: Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 JRun/4.0
Last-Modified: Tue, 03 Jan 2012 11:41:16 GMT
Connection: close
Content-Type: text/html; charset=UTF-8
Connection closed by foreign host.

In the above example it is showing all the details about your web server and php this is not recommended for security reasons.We need to hide this information with the following procedure.


To Hide Apache Information:


To hide the information, add the following two apache directives in Apache configuration file, (httpd.conf or apache2.conf)

ServerTokens ProductOnly

ServerSignature Off

# /etc/init.d/httpd restart

Now the output for apache header looks like below

Server: Apache


To Hide PHP Version Details

Locate php.ini  loaded in the server.

Change the following option in php.ini

expose_php On

to

expose_php Off

# /etc/init.d/httpd restart


To Hide BIND Version


You can check the Bind version of a server by using the following command.

# dig +short @XXX.XXX.XXX.XXX -c CH -t txt version.bind
    "9.3.6-P1-RedHat-9.3.6-20.P1.el5_8.4"

To hide your version of bind, change the version value in named.conf as like the following.
You can give any string for the version.

options {
directory "/var/named";
version "We Just Hide It";
};

# dig +short @XXX.XXX.XXX.XXX -c CH -t txt version.bind
   "We Just Hide It"

Coldfusion9 Installation on CentOS Server



Coldfusion Installation on CentOS Server


Must be Check/Done Before Proceeding Installation:


1. # yum update
   -Update your CentOS server before proceeding installation.

2. Disable SELinux if it is already enabled.

3. # yum install libstdc++.so.5
    -To install the required libstdc++.so.5 C++ Library

4. # which httpd
    /usr/sbin/httpd
    httpd must be installed. It is needed the location of httpd binary file for the installation of coldfusion.

5. # uname -m
   -Check the architecture of the OS, whether it is 64 bit or 32 bit.

6. Note down the serial number if you have one or install the trial version.



Installation:



1. # cd /usr/local/src

   Download the correct 64/32 bit version of Coldfusion9 as per the OS architecure.
   You can follow the the URL given below to check the versions.

   # wget http://download.macromedia.com/pub/coldfusion/cf9_installer/ColdFusion_9_WWEJ_linux.bin
   -Download the 32 bit version

   # wget http://download.macromedia.com/pub/coldfusion/cf9_installer/ColdFusion_9_WWEJ_linux64.bin
   -Download the 64 bit version

2. # chmod +x ColdFusion_9_WWEJ_linux*.bin
   -To give executable permission to the downloaded installation binary file.

3.  For the 32-bit installation
    # ./coldfusion_9_WWEJ_linux.bin

    For the 64-bit installation
    # ./coldfusion_9_WWEJ_linux64.bin

4. Installation process will ask you somany questions. Select the options as you want to customize. The questions are as like the following.


DO YOU ACCEPT THE TERMS OF THIS LICENSE AGREEMENT? (Y/N): Y

====================================================
Install Type
------------

If you do not have a serial number, select either 30-day trial or Developer
Edition.

->1- Install new version of Adobe ColdFusion 9 with a serial number
2- 30-day trial
3- Developer Edition

Installation Choice: 1

Serial Number: XXXX-XXXX-XXXX-XXXX-XXXX-XXXX

====================================================
Installer Configuration
-----------------------

What kind of installation do you want?

->1- Server configuration
2- Enterprise Multiserver configuration
3- J2EE configuration (EAR file)
4- J2EE configuration (WAR file)

Choose one of the following options:: 1

====================================================
Is Adobe ColdFusion 9 (Server Configuration) Installed?
-------------------------------------------------------

You cannot install the server configuration of Adobe ColdFusion 9 if it is already installed on this computer.

Is there already a server configuration of Adobe ColdFusion 9 installed?

1- Yes
->2- No

ENTER THE NUMBER FOR YOUR CHOICE, OR PRESS <ENTER> TO ACCEPT THE DEFAULT:: 2

====================================================
Subcomponent installation
-------------------------

The following options are available for installation.

An option marked with "[X]" in front will be installed and an option with "[ ]"
will not. Choosing an option will toggle it on or off

[X] 1) ColdFusion 9 Documentation
[X] 2) ColdFusion 9 Solr Services
[X] 3) ColdFusion 9 Search Services
[X] 4) Start ColdFusion on system init

5) Continue with installation

Select an option: 5

====================================================
Choose Install Folder
---------------------

Select the directory where you want to install Adobe ColdFusion 9.

Directory:

Default Install Folder: /opt/coldfusion9

ENTER AN ABSOLUTE PATH, OR PRESS <ENTER> TO ACCEPT THE DEFAULT
:

====================================================
Earlier Versions of Adobe ColdFusion installed?
-----------------------------------------------

If you installed an earlier version of ColdFusion on this computer, you can migrate your settings to Adobe ColdFusion 9.

Is there an earlier version of ColdFusion installed on this computer (for example, ColdFusion 6 or ColdFusion MX 7)?

1- Yes
->2- No

ENTER THE NUMBER FOR YOUR CHOICE, OR PRESS <ENTER> TO ACCEPT THE DEFAULT::

====================================================
Configure Web Servers
---------------------

Please configure your web server(s). If you do not configure a web server the
built-in web server will be used on port 8500 or the next available port.

1- Add Web Server Configuration
->2- Continue with installation

Choice: 1

****************************************************

->1- Apache
2- Sun ONE Web Server (iPlanet)
3- Cancel

What kind of web server are you configuring: 1

What directory contains your Apache configuration file (httpd.conf)? (For
example, on Red Hat Linux it could be located in the /etc/httpd/conf
directory if you installed from an rpm, or for SuSe Linux, it could be in
/etc/apache2)

Directory: /etc/httpd/conf

****************************************************

Where is the Apache program binary file? (For example, on Red Hat Linux it
could be /usr/sbin/httpd if you installed from an rpm, or for SuSE Linux it
could be located at /usr/sbin/httpd2) If you have more than one instance of
Apache on your computer, enter the binary file location for the Apache web
server that will use ColdFusion. (Note: this is not the Apache start and
stop script.)

File: /usr/sbin/httpd

****************************************************

Where is the control file that you use to start and stop the Apache web
server? (For example, this could be /etc/init.d/httpd on Red Hat Linux if
you installed from an rpm, /usr/sbin/apache2ctl on SuSe Linux, or it could
be /usr/local/apache/bin/apachectl on hand-compiled versions.)

File: /etc/init.d/httpd

****************************************************

Please configure your web server(s). If you do not configure a web server the
built-in web server will be used on port 8500 or the next available port.

1- Add Web Server Configuration
2- Remove Web Server Configuration
3- Edit:Apache : /etc/httpd/conf
->4- Continue with installation

Choice: 4

====================================================
Choose Adobe ColdFusion 9 Administrator Location
------------------------------------------------

Select the location of the web root for Adobe ColdFusion 9. This is where the installer places the Adobe ColdFusion 9 Administrator.

This directory must be the web root for one of the websites to be configured for use with Adobe ColdFusion 9.

Directory: (DEFAULT: /var/www/html):

====================================================
Runtime User
------------

Enter the name of the runtime user. This user must already exist on the system.

User Name: (DEFAULT: nobody):

====================================================
Configure ColdFusion with OpenOffice
------------------------------------

Configuring OpenOffice installation with ColdFusion will enable Office documents to be processing using OpenOffice. If OpenOffice is not configured ColdFusion will not be able to convert some Microsoft Office Documents to PDF. Check the documentation for more details.

1- Configure ColdFusion with local Openoffice installation
->2- Skip

ENTER THE NUMBER FOR YOUR CHOICE, OR PRESS <ENTER> TO ACCEPT THE DEFAULT::

====================================================
Administrator Password
----------------------

Enter the password that you will use to restrict access to the ColdFusion
Administrator.

This field is required.

Password: ********
Confirm Password: ********

====================================================
Enable RDS
----------

The ColdFusion Remote Development Service (RDS) lets developers using Adobe
tools remotely connect to this server for development purposes. RDS is required
for Line Debugging, Report Builder, and Dreamweaver Extensions.

If this is a production server, Adobe recommends that you disable RDS.
Note, however, that disabling RDS also disables debugging, the directory
browsing applets in the ColdFusion Administrator and some of the functionality
in the Report Builder.

Enable RDS (Y/N): Y
Password: *******
Confirm Password: ********

====================================================
Installation Confirmation
-------------------------

Installation Type:
Server configuration

Licensing:
Enterprise edition
Serial Number: XXXX-XXXX-XXXX-XXXX-XXXX-XXXX

Installation Directories:
Product: /opt/coldfusion9
Web root: /var/www/html

Server Information:
Web Server: Apache (/etc/httpd/conf)
Port:
Search Services: installed
ColdFusion Solr Search Services: installed
Documentation: installed
RDS: enabled

Disk Space Information (for Installation Target):
Required: 992,437,542 bytes
Available: 110,094,069,760 bytes

PRESS <ENTER> TO CONTINUE:

====================================================
Installing...
-------------

[==================]

====================================================
Installation Complete
---------------------

You have successfully completed the first step in installing Adobe ColdFusion





5. # cd /opt/coldfusion9/bin
   # ./coldfusion start
   # ./coldfusion stop
   -To start/stop coldfusion on the server.

6. To access the adminstrator panel, use the following link.
   http://[machinename]/CFIDE/administrator
   Enter the administrator password you have given during the installation.


Note:-