|
Written by F.Marchioni
|
|
Friday, 11 December 2009 13:42 |
|
A default JBoss AS 5 installation takes up about 200 Mb when unpacked. This amount of disk space can however grow up a lot if you let the application server breed without control. Here's what you must know if you are administering a JBoss AS:
To make reading lighter we have organized the reading of this article as a FAQ so you find easier where a certain resource is persisted.
Where JBoss AS Stores the database files for the Hypersonic Default Connection ?
Hypersonic DB by default stores db files in the server/<your config>/data/hypersonic. They are plain text files which contain the database configuration and the DDL and table data.
Where JBoss AS stores the WSDL you are publishing ?
WSDL for your web services are stored and versioned in the folder server/<yourconfig>/data/wsdl.
Where JBoss keeps a backup of your Web applications ?
Web applications are backed up in the folder server/<your config>/tmp folder. There you can find lots of folder with deployments id which looks meaningless to you. We suggest you to launch a find on the tmp folder with the Web application name, otherwise it will be very difficult to catch your Web application.
Where are compiled JSPs ?
Compiled JSPs are in the folder server/<your config>/work. This location is quite useful if you are getting an exception on the JSP, because the exception line number is not the actual JSP line number but the compiled JSP line number.
Where are XMBean persistent attributes stored ?
MBeans are the JBoss JMX implementation version of the JMX ModelMBean. They can be configured to persist attributes. The attributes are persisted in server/<your config>/data/xmbean-attrs.
Where are transaction logs stored?
By default the transaction logs are stored in the folder server/<your config>/data/tx-object-store.
Where are Stateful Session Beans passivated ?
By default SFSB are passivated in the folder server/<your config>/tmp/sessions.
Where are persistent JMS message written ?
The default JMS Persistence Manager stores data on the DefaultDS Datasource pointing at Hypersonic DB. In order to enable support for a different database, just replace the default hsqldb-persistence-service.xml configuration file with the database-specific configuration file and restart the server.
Where are Server log files written ?
Server log files are written by default in the server/<your config>/logs dir. Today's server log is named server.log. Each day the log file is rotated to the server.log.YYYY-MM-DD format.
|
|
Last Updated ( Friday, 11 December 2009 14:53 )
|