App server related topics
(Difference between revisions)
(→External Links: Added the JBoss section. TODO: explain exactly how JBoss fux0rs the web install.) |
|||
Line 1: | Line 1: | ||
+ | = JBoss = | ||
+ | |||
+ | JBoss treats WAR files differently than other application servers in ways that severely affect the OpenCms installation procedure. To circumvent the problem, OpenCms has to be deployed as an unpacked WAR directory on JBoss. | ||
+ | |||
+ | Procedure: | ||
+ | #Extract opencms.war from the downloaded archive and copy it to the JBoss deploy directory | ||
+ | #Rename opencms.war to prevent naming confusion for the next step (example: opencms.2.war) | ||
+ | #Create a directory named "opencms.war" | ||
+ | #Unpack opencms.2.war in the opencms.war directory | ||
+ | #(Optional, for unix/linux servers) grant the permission to read, write and execute for all on the opencms.war/ directory and it's subtree (chmod -R 777 opencms.war) | ||
+ | |||
+ | After these steps, the web config should work fine. | ||
+ | |||
== External Links == | == External Links == | ||
[http://www.opencms-forum.de/opencms-forum/viewthread?thread=1511 Tomcat + IIS Config] | [http://www.opencms-forum.de/opencms-forum/viewthread?thread=1511 Tomcat + IIS Config] | ||
[http://www.opencms-forum.de/opencms-forum/viewthread?thread=1141#3081 Websphere] | [http://www.opencms-forum.de/opencms-forum/viewthread?thread=1141#3081 Websphere] |
Revision as of 20:03, 17 November 2006
JBoss
JBoss treats WAR files differently than other application servers in ways that severely affect the OpenCms installation procedure. To circumvent the problem, OpenCms has to be deployed as an unpacked WAR directory on JBoss.
Procedure:
- Extract opencms.war from the downloaded archive and copy it to the JBoss deploy directory
- Rename opencms.war to prevent naming confusion for the next step (example: opencms.2.war)
- Create a directory named "opencms.war"
- Unpack opencms.2.war in the opencms.war directory
- (Optional, for unix/linux servers) grant the permission to read, write and execute for all on the opencms.war/ directory and it's subtree (chmod -R 777 opencms.war)
After these steps, the web config should work fine.