[jboss-cvs] JBossAS SVN: r92591 - projects/docs/enterprise/5.0/Getting_Started_Guide/en-US.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Aug 19 21:10:21 EDT 2009


Author: irooskov at redhat.com
Date: 2009-08-19 21:10:21 -0400 (Wed, 19 Aug 2009)
New Revision: 92591

Modified:
   projects/docs/enterprise/5.0/Getting_Started_Guide/en-US/Getting_Started_Guide.xml
   projects/docs/enterprise/5.0/Getting_Started_Guide/en-US/Start_Stop_Server.xml
   projects/docs/enterprise/5.0/Getting_Started_Guide/en-US/The_JBoss_Server_A_Quick_Tour.xml
Log:
updated the getting started guide with info


Modified: projects/docs/enterprise/5.0/Getting_Started_Guide/en-US/Getting_Started_Guide.xml
===================================================================
--- projects/docs/enterprise/5.0/Getting_Started_Guide/en-US/Getting_Started_Guide.xml	2009-08-20 00:47:41 UTC (rev 92590)
+++ projects/docs/enterprise/5.0/Getting_Started_Guide/en-US/Getting_Started_Guide.xml	2009-08-20 01:10:21 UTC (rev 92591)
@@ -8,7 +8,6 @@
 	<xi:include href="Preface.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
 	<xi:include href="The_JBoss_Server_A_Quick_Tour.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
 <!--	<xi:include href="EJB3_Caveats.xml" xmlns:xi="http://www.w3.org/2001/XInclude" /> -->
-	<xi:include href="JNDIView_Service.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
 	<xi:include href="About_the_Example_Applications.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
 	<xi:include href="Sample_JSF_EJB3_Application.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
 	<xi:include href="Using_Seam.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />

Modified: projects/docs/enterprise/5.0/Getting_Started_Guide/en-US/Start_Stop_Server.xml
===================================================================
--- projects/docs/enterprise/5.0/Getting_Started_Guide/en-US/Start_Stop_Server.xml	2009-08-20 00:47:41 UTC (rev 92590)
+++ projects/docs/enterprise/5.0/Getting_Started_Guide/en-US/Start_Stop_Server.xml	2009-08-20 01:10:21 UTC (rev 92591)
@@ -128,24 +128,29 @@
 	<section id="Starting_and_Stopping_the_Server-Running_as_a_Service_under_Microsoft_Windows">
 		<title> Running as a Service under Microsoft Windows </title>
 		<para>
-			You can configure the server to run as a service under Microsoft Windows, and configure it to start automatically if desired.
+			The JBoss Enterprise Application Platform 5 comes with the necessary files to configure the server to run as a service under windows. Distributed with JBoss Native, this enables the JBoss Enterprise Application Platform 5 to be run as a service on Windows operating system. To install the service navigate to <filename>JBOSS_DIST/jboss-as/bin</filename> and locate the <filename>service.bat</filename> file. Run the following command in a command prompt:
 		</para>
+<programlisting>
+./service.bat install
+</programlisting>
+		<!-- JBoss Application Server in this instance should be left as is and not changed to the EAP name -->
 		<para>
-			Download the <literal>JavaService</literal> package from <ulink url="http://forge.objectweb.org/projects/javaservice/">http://forge.objectweb.org/projects/javaservice/</ulink>.
+			This commands installs the JBoss Enterprise Application Platform as a service. Under the Windows services list you will find this listed by the short name <filename>JBAS50SVC</filename> and the long name <filename>JBoss Application Server 5.1</filename>.
 		</para>
 		<para>
-			Unzip the package and use the <literal>JBossInstall.bat</literal> file to install the JBoss service. You must set the <literal>JAVA_HOME</literal> and <literal>JBOSS_HOME</literal> environment variables to point to the <literal>jdk</literal> and <literal>jboss-as</literal> directories before running <literal>JBossInstall.bat</literal>. Run <literal>JBossInstall.bat</literal> with the following syntax:
+			Once the service is installed successfully, you can control and configure the service from the <literal>Windows Services Manager</literal> application. You can configure it to start automatically when the system is booted. You can even manually start and stop the service from the <literal>Windows Services Manager</literal>.
 		</para>
-<screen>JBossInstall.bat <replaceable>&lt;depends&gt;</replaceable> [-auto | -manual]</screen>
 		<para>
-			Where <replaceable>&lt;depends&gt;</replaceable> is the name of any service that the JBoss AS server depends on, such as the <literal>mysql</literal> database service.
+			If you want to pass parameters to the server (for example, <code>-b</code>, <code>-c</code>) when running it as a service, you can do so by editing the <filename>service.bat</filename> to include these parameters:
 		</para>
-		<para>
-			Once the service is installed the server can be started by using the command <literal>net start JBoss</literal>, and stopped with the command <literal>net stop JBoss</literal>.
-		</para>
-		<para>
-			Please refer to the documentation included in the <literal>JavaService</literal> package for further information.
-		</para>
+<programlisting>
+call run.bat -c default -b localhost &lt; .r.lock &gt;&gt; run.log 2&gt;&amp;1
+</programlisting>
+		<important>
+			<para>
+				Add these parameters at both places where <filename>run.bat</filename> appears in the <filename>service.bat</filename> file.
+			</para>
+		</important>
 	</section>
 </section>
 

Modified: projects/docs/enterprise/5.0/Getting_Started_Guide/en-US/The_JBoss_Server_A_Quick_Tour.xml
===================================================================
--- projects/docs/enterprise/5.0/Getting_Started_Guide/en-US/The_JBoss_Server_A_Quick_Tour.xml	2009-08-20 00:47:41 UTC (rev 92590)
+++ projects/docs/enterprise/5.0/Getting_Started_Guide/en-US/The_JBoss_Server_A_Quick_Tour.xml	2009-08-20 01:10:21 UTC (rev 92591)
@@ -81,6 +81,7 @@
 			</para>
 		</note>
 	</section>
+	<xi:include href="JNDIView_Service.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
 	<section id="The_JBoss_Server___A_Quick_Tour-Hot-deployment_of_services_in_JBoss">
 		<title>Hot-deployment of services in JBoss</title>
 		<para>




More information about the jboss-cvs-commits mailing list