System information

111
CONFIGURING AND ADMINISTERING COLDFUSION 9
Working with Server Manager
Last updated 2/21/2012
ColdFusion Application Name (Name of ColdFusion application deployed on WebSphere.)
Admin Port (port number for accessing the deployed WAR file, which is typically the administrator server port)
JBoss specific parameters
For JBoss, deploy the jbossappstartup.war file on JBoss server.
The start/stop operations work only when secure access of JNDI over HTTP is enabled.
To configure secure access of JNDI over HTTP:
1 In <jboss-home>/server/default/deploy/http-invoker.sar/invoker.war/WEB-INF/web.xml, uncomment the servlet
mapping
<servlet-mapping>
<servlet-name>JNDIFactory</servlet-name>
<url-pattern>/restricted/JNDIFactory/*</url-pattern>
</servlet-mapping>
2
In <jboss-home>/server/default/deploy/http-invoker.sar/invoker.war/WEB-INF/jboss-web.xml, uncomment the line:
<security-domain>java:/jaas/jmx-console</security-domain>
3 In <jboss-home>/server/default/conf/login-config.xml, add the following <policy> if it does not exist.
<application-policy name = "jmx-console">
<authentication>
<login-module code="org.jboss.security.auth.spi.UsersRolesLoginModule"
flag = "required">
<module-option name="usersProperties">props/jmx-console-
users.properties</module-option>
<module-option name="rolesProperties">props/jmx-console-
roles.properties</module-option>
</login-module>
</authentication>
</application-policy>
The files props/jmx-console-users.properties and props/jmx-console-roles.properties must contain
the entries in the following format:
/jmx-console-users.properties:
Format: {username}={password}
/jmx-console-roles.properties
Format: {username}={comma-separated list of roles}
For more information on enabling secure access of JNDI over HTTP, see Securing Access to JNDI over HTTP.
The JBoss parameters in the Start/Stop Details tab of Server Manager are:
User name (user name mentioned in jmx-console-users.properties)
Password (password of the corresponding user)
Port (port number for accessing the admin console)
Context root (name of the deployed WAR file)
Admin Port (port number from where the deployed WAR file can be accessed, which is usually the admin server port)