Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

server.xml equivalent in JBoss AS 7

I am trying to run my application in jboss 7 from jboss 4. In jboss 4 we changed server.xml to configure keystoreFile and keystorePass etc. Can any one help me where to make these changes in jboss7.

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

divya chekuri


People also ask

Where is JBoss server xml?

JBoss Web Server's main configuration file, server. xml, is located in the server/xxx/ deploy/jbossweb.

What is host xml in JBoss?

The host. xml file is present on each host where the domain is installed and specifies the elements that are specific to the servers running on the host. Learn how to use JBOSS, from beginner basics to advanced techniques, with online video tutorials taught by industry experts.

What is JBoss standalone xml?

If you look in the $JBOSS_HOME/docs/schema there are several schemas that make up the standalone. xml file. standalone. xml file contains all the information regarding modules used by the JBOSS or wildfly.

Where is standalone xml in JBoss?

Default configuration for a standalone server is stored in the EAP_HOME/standalone/configuration/standalone. xml file and default configuration for a managed domain is stored in the EAP_HOME/domain/configuration/domain. xml file.


1 Answers

The server.xml equivalent in Jboss 7 is a standalone/configuration/standalone.xml for a standalone installation and domain.xml for a domain aware one.

I'm not sure where those options are or how you're supposed to configure it in Jboss 7, but start with standalone.xml file first.

like image 128
Mike Minicki Avatar answered Sep 20 '22 10:09

Mike Minicki