Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

JBoss AS 7 configuration

I downloaded JBoss AS 7 and trying to run my application in it. But I couldn't find server.xml to change settings. Previously I used JBoss AS 4.2.2 and have server.xml in <jboss_home>\server\default\deploy\jboss-web.deployer. Can anyone help me how to configure AS 7?

like image 225
divya chekuri Avatar asked Jul 15 '11 15:07

divya chekuri


1 Answers

The directory layout has changed. See here: https://docs.jboss.org/author/display/AS7/Getting+Started+Guide

Most of the stuff is in $JBOSS_HOME/standalone/configuration/standalone.xml or the "domain/**" folders depending on which config/server you are running.

If you want to configure the web container specifically then see here: https://docs.jboss.org/author/display/AS7/Admin+Guide#AdminGuide-Containerconfiguration

..and modify the standalone.xml file.

like image 141
Lol Avatar answered Nov 15 '22 10:11

Lol