You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by ch...@apache.org on 2012/10/23 15:18:15 UTC

svn commit: r1401285 - in /airavata/site/trunk/content/documentation: deployment.mdtext system/advanced-workflow-samples.mdtext system/airavata-in-5-minutes.mdtext

Author: chathuri
Date: Tue Oct 23 13:18:14 2012
New Revision: 1401285

URL: http://svn.apache.org/viewvc?rev=1401285&view=rev
Log:
updating docs

Modified:
    airavata/site/trunk/content/documentation/deployment.mdtext
    airavata/site/trunk/content/documentation/system/advanced-workflow-samples.mdtext
    airavata/site/trunk/content/documentation/system/airavata-in-5-minutes.mdtext

Modified: airavata/site/trunk/content/documentation/deployment.mdtext
URL: http://svn.apache.org/viewvc/airavata/site/trunk/content/documentation/deployment.mdtext?rev=1401285&r1=1401284&r2=1401285&view=diff
==============================================================================
--- airavata/site/trunk/content/documentation/deployment.mdtext (original)
+++ airavata/site/trunk/content/documentation/deployment.mdtext Tue Oct 23 13:18:14 2012
@@ -1,36 +1,36 @@
 ### How to start Airavata System and what is the order to start each component.
 
-To start Airavata system users have to use the scripts provided in <AIRAVATA_HOME>/bin/. Here we define <AIRAVATA_HOME> as the location where
+To start Airavata system users have to use the scripts provided in AIRAVATA_HOME/bin/. Here we define AIRAVATA_HOME as the location where
 you extract apache airavata binary. If you are running all the components with default setup, you have to start the components in the following order:
 
 1. airavata-server.sh -   This starts the WS-Messenger component and the GFac service in the Apache Axis2 Container and points to the default
                           derby database server, which runs on port "1527". If you are starting with a different registry URL, you have to make
-                          the corresponding change in the <AIRAVATA_HOME>/standalone-server/conf/airavata-server.properties file.
+                          the corresponding change in the AIRAVATA_HOME/standalone-server/conf/airavata-server.properties file.
 
 2. xbaya-gui.sh         - Now you have available GFac Service running with a Registry, so its time for you to start XBaya and run
-                          your Applications. For that copy "<AIRAVATA_HOME>/standalone-server/conf/airavata-server.properties"
-                          file into "<AIRAVATA_HOME>/bin" folder. But if you want XBaya to run with normal Web services, not with GFac
+                          your Applications. For that copy "AIRAVATA_HOME/standalone-server/conf/airavata-server.properties"
+                          file into "AIRAVATA_HOME/bin" folder. But if you want XBaya to run with normal Web services, not with GFac
                           Service you do not have to start Airvata Service, you can simply use Xbaya alone, if you require provenance,
                           you have to start Registry.
 
 ### How to start the Airavata System Components with MySQL
 
 By default, Airavata is running using Apache Derby as the backend database. You can use MySQL database instead of default derby database if
-you wish. Here we define <AIRAVATA_HOME> as the location where you extract Apache Airavata binary.
+you wish. Here we define AIRAVATA_HOME as the location where you extract Apache Airavata binary.
 
 1. Create a new user called airavata with password airavata in running MySQL instance
 2. Create a mysql database in your server with required name for user airavata (Assume name is:persistent_data)
-3. Copy mysql driver jar (mysql-connector-java-5.1.6.jar) to <AIRAVATA_HOME>/standalone-server/lib
-4. Edit jdbc connection URLs at airavata-server.properties file that resides in <AIRAVATA_HOME>/standalone-server/conf.
+3. Copy mysql driver jar (mysql-connector-java-5.1.6.jar) to AIRAVATA_HOME/standalone-server/lib
+4. Edit jdbc connection URLs at airavata-server.properties file that resides in AIRAVATA_HOME/standalone-server/conf.
 You can achieve this by just un-commenting out parameters under "configuration for mysql" section and commented-out the default
 derby configurations.
          registry.jdbc.url=jdbc:mysql://localhost:3306/persistent_data
          registry.jdbc.driver=com.mysql.jdbc.Driver
-5. Go to <AIRAVATA_HOME>/bin and start the script airavata-server.sh. Now Airavata server will start with MySQL database
+5. Go to AIRAVATA_HOME/bin and start the script airavata-server.sh. Now Airavata server will start with MySQL database
 (in this case persistent_data database).
 When starting XBaya, it should also point to the same database that we specified when starting Airavata server. In order to do that,
-copy the same airavata-server.properties file that you have edited in the 2nd step, to <AIRAVATA_HOME>/bin folder. Now you are ready
-to start XBaya. To start XBaya, go to <AIRAVATA_HOME>/bin folder and run the script xbaya-gui.sh. Now XBaya will start with the
+copy the same airavata-server.properties file that you have edited in the 2nd step, to AIRAVATA_HOME/bin folder. Now you are ready
+to start XBaya. To start XBaya, go to AIRAVATA_HOME/bin folder and run the script xbaya-gui.sh. Now XBaya will start with the
 same database that used to start Airavata server.
 
 ### How to Deploy Airavata on Tomcat
@@ -74,20 +74,20 @@ database and AIRAVATA_HOME/standalone-se
 1. First create a mysql database in your server with required name (Assume name is:wsmg and username/password is : airavata/airavata).
 
 2. Create a tables in the above database using the following scripts.
-      AIRAVATA_HOME/standalone-server/bin/database_scripts/mgsBox-mysql.sql
-      AIRAVATA_HOME/standalone-server/bin/database_scripts/msgBroker-mysql.sql
+      * AIRAVATA_HOME/standalone-server/bin/database_scripts/mgsBox-mysql.sql
+      * AIRAVATA_HOME/standalone-server/bin/database_scripts/msgBroker-mysql.sql
 
 3. Change msgBox.properties and msgBroker.properties files located at AIRAVATA_HOME/standalone-server/conf with database driver name and
 database urls as below.
-      msgBox.jdbc.driver=com.mysql.jdbc.Driver
-      msgBox.jdbc.url=jdbc:mysql://localhost:3306/wsmg?user=airavata&password=airavata
-      broker.jdbc.driver=com.mysql.jdbc.Driver
-      broker.jdbc.url=jdbc:mysql://localhost:3306/wsmg?user=airavata&password=airavata
+      * In msgBox.properties file
+           * msgBox.jdbc.driver=com.mysql.jdbc.Driver
+           * msgBox.jdbc.url=jdbc:mysql://localhost:3306/wsmg?user=airavata&password=airavata
+      
+      * In msgBroker.properties file 
+           * broker.jdbc.driver=com.mysql.jdbc.Driver
+           * broker.jdbc.url=jdbc:mysql://localhost:3306/wsmg?user=airavata&password=airavata
 
-Once you update the parameters, make sure that you have commented-out default derby values and uncommented-out mysql values.
-Now your msgBox.properties file would look like above.
-
-In the similar manner update the msgBroker.properties file as well.
+      * Once you update the parameters, make sure that you have commented-out default derby values and uncommented-out mysql values.
 
 4. Change the driver class name based on your driver and copy your driver(in this case, it is mysql-connector-java-5.1.13-bin.jar) to
 AIRAVATA_HOME/standalon-server/lib directory and start the server. To start the server, go to AIRAVATA_HOME/bin folder and run the script

Modified: airavata/site/trunk/content/documentation/system/advanced-workflow-samples.mdtext
URL: http://svn.apache.org/viewvc/airavata/site/trunk/content/documentation/system/advanced-workflow-samples.mdtext?rev=1401285&r1=1401284&r2=1401285&view=diff
==============================================================================
--- airavata/site/trunk/content/documentation/system/advanced-workflow-samples.mdtext (original)
+++ airavata/site/trunk/content/documentation/system/advanced-workflow-samples.mdtext Tue Oct 23 13:18:14 2012
@@ -57,9 +57,7 @@ Note: Currently Airavata will work with 
 
 2. Now Run the following scripts in the given order below to start the components of Airavata.
 <br></br>
-AIRAVATA_HOME/bin/jackrabbit-server.sh - This will start Jackrabbit repository on port 8081.
-<br></br>
-AIRAVATA_HOME/bin/airavata-server.sh - This will start SimpleAxis2Server on port 8080
+AIRAVATA_HOME/bin/airavata-server.sh - This will start SimpleAxis2Server on port 8080 and with default derby database which run on port 1527
 <br></br>
 AIRAVATA_HOME/bin/xbaya-gui.sh - This will start XBaya GUI application.
 <br></br>
@@ -100,4 +98,4 @@ XBaya support Parametric Sweeps which ca
 	*	This workflow will use Airavata's ForEach construct to calculate Levenshtein Distance of strings. This workflow will use cross product to calculate distance.
 </br></br>
 ![3](/documentation/system/interesting-workflow-samples/3.jpg)
-</br></br>
\ No newline at end of file
+</br></br>

Modified: airavata/site/trunk/content/documentation/system/airavata-in-5-minutes.mdtext
URL: http://svn.apache.org/viewvc/airavata/site/trunk/content/documentation/system/airavata-in-5-minutes.mdtext?rev=1401285&r1=1401284&r2=1401285&view=diff
==============================================================================
--- airavata/site/trunk/content/documentation/system/airavata-in-5-minutes.mdtext (original)
+++ airavata/site/trunk/content/documentation/system/airavata-in-5-minutes.mdtext Tue Oct 23 13:18:14 2012
@@ -70,7 +70,7 @@ The Tutorial is divided into 3 simple se
 
 1.	Configure XBaya to use the Airavata repository.
 	- From the main menu select: `Registry` -> `Setup Airavata Registry`
-  	- If you are using the default Jackrabbit server from Airavata use the following information,
+	- If you are using the default derby database as your registry from Airavata use the following information,
   	<table border="1">
   		<tr>
   			<td><b>Username</b></td>