Author: smumford
Date: 2010-12-02 02:04:15 -0500 (Thu, 02 Dec 2010)
New Revision: 5441
Modified:
epp/docs/branches/EPP_5_1_Branch/Installation_Guide/en-US/DatabaseConfiguration.xml
epp/docs/branches/EPP_5_1_Branch/Installation_Guide/en-US/HTTPSConfiguration.xml
epp/docs/branches/EPP_5_1_Branch/Installation_Guide/en-US/Post_Installation.xml
epp/docs/branches/EPP_5_1_Branch/Installation_Guide/en-US/Test_Your_Installation.xml
Log:
JBEPP-515: Post-update sweep and tweak
Modified:
epp/docs/branches/EPP_5_1_Branch/Installation_Guide/en-US/DatabaseConfiguration.xml
===================================================================
---
epp/docs/branches/EPP_5_1_Branch/Installation_Guide/en-US/DatabaseConfiguration.xml 2010-12-02
07:02:28 UTC (rev 5440)
+++
epp/docs/branches/EPP_5_1_Branch/Installation_Guide/en-US/DatabaseConfiguration.xml 2010-12-02
07:04:15 UTC (rev 5441)
@@ -40,21 +40,21 @@
<para>To configure the database datasource used by JCR you will need to edit
the
datasource descriptor located at
<filename><replaceable>JBOSS_HOME</replaceable>/server/<replaceable><PROFILE></replaceable>/deploy/gatein-ds.xml</filename>:
-<programlisting>
- <no-tx-datasource>
- <jndi-name>gatein-jcr</jndi-name>
- <connection-url>
- jdbc:hsqldb:${jboss.server.data.dir}${/}gatein${/}hypersonic${/}gatein-jcr-localDB
- </connection-url>
- <driver-class>org.hsqldb.jdbcDriver</driver-class>
- <user-name>sa</user-name>
- <password></password>
+<programlisting language="XML" role="XML">
+<no-tx-datasource>
+ <jndi-name>gatein-jcr</jndi-name>
+ <connection-url>
+ jdbc:hsqldb:${jboss.server.data.dir}${/}gatein${/}hypersonic${/}gatein-jcr-localDB
+ </connection-url>
+ <driver-class>org.hsqldb.jdbcDriver</driver-class>
+ <user-name>sa</user-name>
+ <password></password>
- <min-pool-size>5</min-pool-size>
- <max-pool-size>20</max-pool-size>
- <idle-timeout-minutes>0</idle-timeout-minutes>
-
<prepared-statement-cache-size>32</prepared-statement-cache-size>
- </no-tx-datasource>
+ <min-pool-size>5</min-pool-size>
+ <max-pool-size>20</max-pool-size>
+ <idle-timeout-minutes>0</idle-timeout-minutes>
+
<prepared-statement-cache-size>32</prepared-statement-cache-size>
+</no-tx-datasource>
</programlisting>
</para>
@@ -81,21 +81,21 @@
<para>To configure the database datasource used by IDM you will need to edit
the
datasource descriptor located at
<filename><replaceable>JBOSS_HOME</replaceable>/server/<replaceable><PROFILE></replaceable>/deploy/gatein-ds.xml</filename>:
-<programlisting>
- <no-tx-datasource>
- <jndi-name>gatein-idm</jndi-name>
- <connection-url>
-
jdbc:hsqldb:${jboss.server.data.dir}${/}gatein${/}hypersonic${/}gatein-idm-localDB
- </connection-url>
- <driver-class>org.hsqldb.jdbcDriver</driver-class>
- <user-name>sa</user-name>
- <password></password>
+<programlisting language="XML" role="XML">
+<no-tx-datasource>
+ <jndi-name>gatein-idm</jndi-name>
+ <connection-url>
+ jdbc:hsqldb:${jboss.server.data.dir}${/}gatein${/}hypersonic${/}gatein-idm-localDB
+ </connection-url>
+ <driver-class>org.hsqldb.jdbcDriver</driver-class>
+ <user-name>sa</user-name>
+ <password></password>
- <min-pool-size>5</min-pool-size>
- <max-pool-size>20</max-pool-size>
- <idle-timeout-minutes>0</idle-timeout-minutes>
-
<prepared-statement-cache-size>32</prepared-statement-cache-size>
- </no-tx-datasource>
+ <min-pool-size>5</min-pool-size>
+ <max-pool-size>20</max-pool-size>
+ <idle-timeout-minutes>0</idle-timeout-minutes>
+
<prepared-statement-cache-size>32</prepared-statement-cache-size>
+</no-tx-datasource>
</programlisting>
</para>
@@ -293,7 +293,7 @@
</orderedlist>
<para><filename>gatein-ds.xml</filename> will then look
like:</para>
- <programlisting><![CDATA[<datasources>
+<programlisting language="XML"
role="XML"><![CDATA[<datasources>
<no-tx-datasource>
<jndi-name>gatein-idm</jndi-name>
<connection-url>jdbc:mysql://mysql-hostname:3306/gateinidm</connection-url>
Modified:
epp/docs/branches/EPP_5_1_Branch/Installation_Guide/en-US/HTTPSConfiguration.xml
===================================================================
---
epp/docs/branches/EPP_5_1_Branch/Installation_Guide/en-US/HTTPSConfiguration.xml 2010-12-02
07:02:28 UTC (rev 5440)
+++
epp/docs/branches/EPP_5_1_Branch/Installation_Guide/en-US/HTTPSConfiguration.xml 2010-12-02
07:04:15 UTC (rev 5441)
@@ -50,7 +50,7 @@
<para>
Comment the following lines in
<filename><replaceable>JBOSS_HOME</replaceable>/server/<replaceable><PROFILE></replaceable>/deploy/jbossweb.sar/server.xml</filename>:
</para>
-<programlisting><![CDATA[<Connector protocol="HTTP/1.1"
port="8080" address="${jboss.bind.address}"
+<programlisting language="XML"
role="XML"><![CDATA[<Connector protocol="HTTP/1.1"
port="8080" address="${jboss.bind.address}"
connectionTimeout="20000" redirectPort="8443" >
]]></programlisting>
</step>
@@ -58,7 +58,7 @@
<para>
Uncomment the following lines...
</para>
-<programlisting><![CDATA[<Connector protocol="HTTP/1.1"
SSLEnabled="true"
+<programlisting language="XML"
role="XML"><![CDATA[<Connector protocol="HTTP/1.1"
SSLEnabled="true"
port="8443" address="${jboss.bind.address}"
scheme="https" secure="true" clientAuth="false"
keystoreFile="$JAVA_HOME/jre/lib/security/cacerts"
Modified: epp/docs/branches/EPP_5_1_Branch/Installation_Guide/en-US/Post_Installation.xml
===================================================================
---
epp/docs/branches/EPP_5_1_Branch/Installation_Guide/en-US/Post_Installation.xml 2010-12-02
07:02:28 UTC (rev 5440)
+++
epp/docs/branches/EPP_5_1_Branch/Installation_Guide/en-US/Post_Installation.xml 2010-12-02
07:04:15 UTC (rev 5441)
@@ -119,7 +119,7 @@
<para>
To avoid a security risk, you MUST specify the value of the
<literal>SuckerPassword</literal> attribute, failing which the default value
will be used. Any one who knows the default password will be able to gain access to any
destinations on the server. The following fragment should be uncommented and modified:
</para>
-<programlisting><bean name="SecurityStore"
+<programlisting language="XML" role="XML"><bean
name="SecurityStore"
class="org.jboss.jms.server.jbosssx.JBossASSecurityMetadataStore">
<! default security configuration >
...
@@ -147,7 +147,7 @@
To disable authentication for the JMX console, edit the
<filename><replaceable>JBOSS_HOME</replaceable>/server/<replaceable><PROFILE></replaceable>/deploy/jmx-console.war/WEB-INF/web.xml</filename>
file and comment out the security-constraint section:
</para>
</formalpara>
-<programlisting>
+<programlisting language="XML" role="XML">
<security-constraint>
<web-resource-collection>
<web-resource-name>HtmlAdaptor</web-resource-name>
@@ -166,7 +166,7 @@
<title>Disabling Authentication for Web Console:</title>
<para>
To disable authentication for the Web console, edit the
<filename><replaceable>JBOSS_HOME</replaceable>/server/<replaceable><PROFILE></replaceable>/deploy/management/console-mgr.sar/web-console.war/WEB-INF/web.xml</filename>
file to comment out the security-constraint section:
-<programlisting>
+<programlisting language="XML" role="XML">
<security-constraint>
<web-resource-collection>
<web-resource-name>HtmlAdaptor</web-resource-name>
@@ -188,7 +188,7 @@
<title>Disabling Authentication for HTTP Invoker:</title>
<para>
To disable authentication for the http invoker,
<literal>JNDIFactory</literal>,
<literal>EJBInvokerServlet</literal>, and
<literal>JMXInvokerServlet</literal> need to be removed from the security
realm in the
<filename><replaceable>JBOSS_HOME</replaceable>/server/<replaceable><PROFILE></replaceable>/deploy/management/console-mgr.sar/web-console.war/WEB-INF/web.xml/deploy/httpha-invoker.sar/invoker.war/WEB-INF/web.xml</filename>
file:
-<programlisting>
+<programlisting language="XML" role="XML">
<security-constraint>
<web-resource-collection>
<web-resource-name>HttpInvokers</web-resource-name>
@@ -215,7 +215,7 @@
<para>
Locate the mbean section with the class
<literal>org.jboss.jmx.connector.invoker.InvokerAdaptorService</literal>. In
that section comment out the line that relates to authenticated users:
</para>
-<programlisting>
+<programlisting language="XML" role="XML">
<descriptors>
<interceptors>
<!-- Uncomment to require authenticated users -->
@@ -231,7 +231,7 @@
<formalpara>
<title>Disabling Pre-configured Accounts</title>
<para>
- &PRODUCT; &VERSION_MINOR; includes four pre-configured user accounts for
testing and evaluation puposes. These accounts can be used for direct access to the
portal.
+ &PRODUCT; includes four pre-configured user accounts for testing and evaluation
puposes. These accounts can be used for direct access to the portal.
</para>
</formalpara>
<para>
Modified:
epp/docs/branches/EPP_5_1_Branch/Installation_Guide/en-US/Test_Your_Installation.xml
===================================================================
---
epp/docs/branches/EPP_5_1_Branch/Installation_Guide/en-US/Test_Your_Installation.xml 2010-12-02
07:02:28 UTC (rev 5440)
+++
epp/docs/branches/EPP_5_1_Branch/Installation_Guide/en-US/Test_Your_Installation.xml 2010-12-02
07:04:15 UTC (rev 5441)
@@ -76,11 +76,11 @@
<para>
Ensure that port 8080 is not already in use and open
<literal>http://localhost:8080/portal</literal> in your web browser.
- <footnote>
+ <note>
<para>
- Note that on some machines, the name localhost won’t resolve properly and you
should use the local loopback address <ulink type="http"
url="127.0.0.1">127.0.0.1</ulink> instead.
+ On some machines, the name localhost won’t resolve properly and you should use
the local loopback address <ulink type="http"
url="127.0.0.1">127.0.0.1</ulink> instead.
</para>
- </footnote>
+ </note>
The contents of your page should look similar to this: <xref
linkend="Test_your_Installation-Test_your_Installation" />.
</para>
<para>
Show replies by date