You can install the ColdFusion J2EE configuration in UNIX. If you are updating an existing deployment of ColdFusion MX, ColdFusion MX 6.1, or ColdFusion MX 7 for J2EE, see Updating from an earlier version for J2EE before you continue.
install ColdFusion in UNIX (J2EE configuration)
- Read the online version of the Release Notes for any late-breaking information or updates. For more information, see www.adobe.com/go/cf8_releasenotes.
- Ensure that your operating system meets the system requirements described on the Adobe website at www.adobe.com/go/cf8_sysreqs.
- Review the Installation considerations for UNIX and Installation considerations for all platforms.
- Determine and record environment information, as described in Preparing to install using the J2EE configuration.
- Determine the answers to the questions in the section Gathering information necessary to install the J2EE configuration.
- Log in as root.
- Copy the installation file that is appropriate for your platform and locale from the DVD or Adobe website, and save it to a directory on your local disk.
The following installation files are those for supported J2EE configuration platforms:
- coldfusion-80-lin.bin - To install on Linux.
- coldfusion-80-sol.bin - To install on Solaris.
- coldfusion-80-other.jar - To install on a UNIX platform other than Solaris or Linux.
- Using the cd command, go to the directory with the installation file.
- Start the installation with the following command:
./<filename> -i console
The installation program starts.
To use the coldfusion-80-other.jar file to install on a UNIX platform other than Solaris or Linux, enter the following command (for more information, see Installation considerations for UNIX):
java_home/bin/java -jar coldfusion-80-other.jar -i console
Note: To run the UNIX installer in GUI mode, type ./<filename> -i gui.
- Follow the prompts, and let the installation program run to completion.
Note: For security reasons, it is crucial that you do not use root for the run-time user. Instead, use a nonprivileged user that does not have a login shell, such as the default user account nobody, which exists for this type of situation.
- Deploy ColdFusion and configure Java settings, as required by your application server.
For more information, see ColdFusion J2EE deployment and configuration.
Note: If you deployed the rds.war file, and an error message indicates that RDS is not installed or not enabled, edit the rds.properties file to match the ColdFusion context root, restart the application server, and re-open the ColdFusion Administrator.
- Open the ColdFusion Administrator to run the Configuration Wizard.
- Configure and manage your system, as described in Configuring Your System.
- If using JRun, add the Log4J-1.2.12.jar file to the JRun server classpath. By default it is in the ColdFusion classpath.
- To learn about ColdFusion, read the documentation, which is accessible through the Documentation link on the Resources page of the ColdFusion Administrator.
- Code and test ColdFusion CFM pages.
Store CFM pages under the web application root (either cfusion-ear/cfusion-war or cfusion-war) and access these pages using a URL of the form http://hostname:portnumber/context-root/filename.cfm, as follows:
- hostname The machine name, IP address, or localhost.
- portnumber The port number used by your application server's web server.
- contextroot The context root for the ColdFusion web application. For more information, see Context root.
- filename The directory path and file to display. The path is relative to the cfusion-war directory.
For example, to display a CFM file located at /opt/jrun4/servers/myserver/cfusion-ear/cfusion-war/eisapp/index.cfm using the built-in JRun web server and a context root of cfmx, you specify the URL as http://localhost:8100/cfmx/eisapp/index.cfm.