[jboss-cvs] JBossAS SVN: r81271 - in projects/docs/enterprise/4.3.3/Common_Criteria_Guide/en-US: images and 1 other directory.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Nov 19 01:30:14 EST 2008


Author: irooskov at redhat.com
Date: 2008-11-19 01:30:14 -0500 (Wed, 19 Nov 2008)
New Revision: 81271

Modified:
   projects/docs/enterprise/4.3.3/Common_Criteria_Guide/en-US/Requirements_for_the_Evaluated_Configuration.xml
   projects/docs/enterprise/4.3.3/Common_Criteria_Guide/en-US/images/RHN_EAP_details.png
   projects/docs/enterprise/4.3.3/Common_Criteria_Guide/en-US/images/RHN_download.png
Log:
updated cc guide 


Modified: projects/docs/enterprise/4.3.3/Common_Criteria_Guide/en-US/Requirements_for_the_Evaluated_Configuration.xml
===================================================================
--- projects/docs/enterprise/4.3.3/Common_Criteria_Guide/en-US/Requirements_for_the_Evaluated_Configuration.xml	2008-11-19 06:29:25 UTC (rev 81270)
+++ projects/docs/enterprise/4.3.3/Common_Criteria_Guide/en-US/Requirements_for_the_Evaluated_Configuration.xml	2008-11-19 06:30:14 UTC (rev 81271)
@@ -277,8 +277,107 @@
 	<section id="configuration_requirements-database_configuration">
 		<title>Database Configuration</title>
 		<para>
-			The default database HSQL that the Enterprise Application Platform ships with is disabled from the outset. For information on how to configure other supported databases refer to <ulink url="http://www.redhat.com/docs/en-US/JBoss_Enterprise_Application_Platform/4.3.0.cp03/html-single/Server_Configuration_Guide/index.html#alternative_DBs"></ulink>. 
+			The default database HSQL that the Enterprise Application Platform ships with must be disabled from the outset as it is not supported. This section will outline how this can be done and then refer you to information on how to configure supported databases.
+		</para> 
+		<para>
+			The following steps will create a new server called <literal>cc</literal> for you to deploy and disable the HSQL database for this configuration.
 		</para>
+		<orderedlist>
+			<listitem>
+				<para>
+					Create a default DS file for the desired database. One can find examples of this file within <filename>${JBOSS_HOME}/docs/examples/jca</filename>.
+				</para>
+				<important>
+					<para>
+						A <filename>DefaultDS</filename> file must be supplied in the<filename>${JBOSS_HOME}/server/production/deploy</filename> directory. 
+					</para>
+				</important>
+			</listitem>
+			<listitem>
+				<para>
+					Delete the following files as they refer to the HSQL database:
+				</para>
+				<itemizedlist>
+					<listitem>
+						<para>
+							<filename> rm ${JBOSS_HOME}/server/cc/deploy/hsqldb-ds.xml </filename>
+						</para>
+					</listitem>
+					<listitem>
+						<para>
+							<filename>rm ${JBOSS_HOME}/server/cc/lib/hsqldb.jar </filename>
+						</para>
+					</listitem>
+					<listitem>
+						<para>
+							<filename>rm ${JBOSS_HOME}/server/cc/lib/hsqldb-plugin.jar </filename>
+						</para>
+					</listitem>
+					<listitem>
+						<para>
+							<filename>rm ${JBOSS_HOME}/server/cc/deploy/jboss-messaging.sar/clustered-hsqldb-persistence-service.xml </filename>
+						</para>
+					</listitem>
+				</itemizedlist>
+			</listitem>
+			<listitem>
+				<para>
+					Copy <filename>oracle-persistence-service.xml</filename> to <filename>${JBOSS_HOME}/server/production/deploy/jboss-messaging.sar/</filename>.
+				</para>
+<programlisting>
+cp ${JBOSS_HOME}/docs/examples/jms/oracle-persistence-service.xml ${JBOSS_HOME}/server/production/deploy/jboss-messaging.sar/ 
+</programlisting>
+				<para>
+					This file contains the definition of persistence service for JBoss Messaging when using an Oracle Database as storage. 
+				</para>
+				<note>
+					<para>
+						Table definitions in this file are not optimized for performance. 
+					</para>
+				</note>
+			</listitem>
+			<listitem>
+				<para>
+					Place your JDBC driver libraries in the <filename>${JBOSS_HOME}/server/production/lib/</filename> directory.
+				</para>
+				<para>
+					If the security policy is to be used, proper permissions must be provided for access to it.
+				</para>
+			</listitem>
+			<listitem>
+				<para>
+					When using  the Oracle Database, the database persistence plugin definition must be changed in <filename>${JBOSS_HOME}/server/production/deploy/ejb-deployer.xml</filename>
+					from being:</para> 
+<programlisting>&lt;attribute name="DatabasePersistencePlugin"&gt;org.jboss.ejb.txtimer.GeneralPurposeDatabasePersistencePlugin&lt;/attribute&gt;
+</programlisting>
+				<para>
+					to being:
+				</para>
+				<programlisting>&lt;attribute name="DatabasePersistencePlugin"&gt;org.jboss.ejb.txtimer.OracleDatabasePersistencePlugin&lt;/attribute&gt;</programlisting>
+			</listitem>
+			<listitem>
+				<para>
+					Comment out the policy for <literal>HsqlDbRealm</literal> in the <filename>${JBOSS_HOME}/server/conf/login-config.xml</filename> file.
+				</para>
+<screen>
+&lt;!-- Security domains for testing new jca framework
+	&lt;application-policy name = "HsqlDbRealm"&gt;
+		&lt;authentication&gt;
+			&lt;login-module code = "org.jboss.resource.security.ConfiguredIdentityLoginModule" flag = "required"&gt;
+				&lt;module-option name = "principal"&gt;sa&lt;/module-option&gt;
+				module-option name = "userName"&gt;cctest&lt;/module-option&gt;
+				&lt;module-option name = "password"&gt;cc1248&lt;/module-option&gt;
+				&lt;module-option name = "managedConnectionFactoryName"&gt;jboss.jca:service=LocalTxCM,name=DefaultDS&lt;/module-option&gt;
+			&lt;/login-module&gt;
+		&lt;/authentication&gt;
+	&lt;/application-policy&gt;
+--&gt; 
+</screen>
+			</listitem>
+		</orderedlist>
+		<para>
+			For information on how to configure other supported databases refer to <ulink url="http://www.redhat.com/docs/en-US/JBoss_Enterprise_Application_Platform/4.3.0.cp03/html-single/Server_Configuration_Guide/index.html#alternative_DBs"></ulink>. 
+		</para>
 	</section>
     </section>
 

Modified: projects/docs/enterprise/4.3.3/Common_Criteria_Guide/en-US/images/RHN_EAP_details.png
===================================================================
(Binary files differ)

Modified: projects/docs/enterprise/4.3.3/Common_Criteria_Guide/en-US/images/RHN_download.png
===================================================================
(Binary files differ)




More information about the jboss-cvs-commits mailing list