Changes between Version 1 and Version 2 of dasi-vm

Show
Ignore:
Author:
ppreddy@uab.edu (IP: 138.26.125.8)
Timestamp:
10/06/09 11:11:07 (2 months ago)
Comment:

dev:sds:add mysql eclipse config

Legend:

Unmodified
Added
Removed
Modified
  • dasi-vm

    v1 v2  
    1010 * VMware Server -1.0.6 or greater 
    1111 * VMware Fusion 
     12 * VMware Player 
    1213 * VMware Workstation     
    1314VMware Client software to provision the dasi-vm: 
    2829tar -xzf dasi-vm.tar.gz 
    2930}}} 
    30  * This will create a directory `dasi-vm` that contains the VM description file `dasi-vm.vmx`. 
    31 Add this to your VM collection by opening the vmx file via your vmware-server-console interface 
    32        Power on the VM inside vmware-server-console 
     31 * This will create a directory `dasi-vm` that contains the VM description file `dasi-vm.vmx`. Add this to your VM collection by opening the vmx file via your vmware-server-console interface. Power on the VM inside vmware-server-console. 
    3332 
    3433== System Accounts == 
    4746== Network == 
    4847 
    49  A dynamic IP address will be assigned to your VM, as soon as you power it on. Find the IP address of your VM through 
     48 A dynamic IP address (NAT) will be assigned to your VM, as soon as you power it on. Find the IP address of your VM through 
    5049{{{ 
    5150/sbin/ifconfig 
    5958}}} 
    6059 
    61  == Dasi Experiment Software Stack == 
     60== Dasi Experiment Software Stack == 
    6261  
    6362 The software stack needed for the simple data service has been installed at /home/dasi. The directory structure and location of installed software is as follows: 
    7170                        |---argouml-0.26.2  
    7271                        |---eclipse 
    73             |---dist----| 
     72             |---bin----| 
     73                        |---eclipse  
     74             |---dist---| 
    7475                        |---caCORE_SDK_41-src.tar 
    7576                        |---apache-tomcat-5.5.28.zip 
    76             |---src-----| 
     77            |---src----| 
    7778                        |---jdk1.6.0_16 
    7879                        |---caCORE_SDK_41 
    7980                        |---caGrid-installer-1.3 
    8081                        |---apache-tomcat-5.5.28 
    81             |---var-----|           
     82                        |---eclipse 
     83             |---var----|           
    8284                        |---log  
    8385 
    8789 The env vars for the simple data service software stack have been defined in /home/dasi/.bashrc. The env vars declared are ANT_HOME, GLOBUS_LOCATION, CAGRID_LOCATION, and CATALINA_HOME.  
    8890 
    89  
    90 Since, caGrid applications run on Java-1.5, this has been installed on the system and is located at /usr/share/jvm/java. If there is a need to experiment with Java-1.6, this version also has been installed at /home/dasi/src/jdk1.6.0_16. Users can choose to switch from Java-1.5 to Java-1.6 by uncommenting the last two lines in /home/dasi/.bashrc and then source your bashrc i.e., 
     91 Since, caGrid applications run on Java-1.5, this has been installed on the system and is located at /usr/share/jvm/java. If there is a need to experiment with Java-1.6, this version also has been installed at /home/dasi/src/jdk1.6.0_16. Users can choose to switch from Java-1.5 to Java-1.6 by uncommenting the last two lines in /home/dasi/.bashrc and then source your bashrc i.e., 
    9192{{{ 
    9293source ~/.bashrc 
     94}}} 
     95 
     96== MySQL == 
     97 
     98 MySQL-5.0.77 has been installed on the dasi-vm. MySQL account details: 
     99{{{ 
     100user: root 
     101password: root 
    93102}}} 
    94103 
    98107 
    99108 The tomcat manager console is password protected, defined at $CATALINA_HOME/conf/tomcat-users.xml. The login details for tomcat manager console 
    100  
     109{{{ 
    101110username: tomcat 
    102111password: tomcat 
     112}}} 
     113 Please change the default password for tomcat manager console in the above mentioned file. 
    103114 
    104 Please change the default password for tomcat manager console in the above mentioned file. 
     115== Eclipse == 
    105116 
    106   
     117 The Java IDE, Eclipse is installed at /home/dasi/src/eclipse. A symbolic link exists for eclipse at /home/dasi/bin. Invoke eclipse with 
     118{{{ 
     119eclipse & 
     120}}}  
     121 Eclipse has been configured with the Tomcat plugin. So, Tomcat can be started/stopped within Eclipse or from command line 
     122{{{ 
     123$CATALINA_HOME/bin/startup.sh 
     124 
     125$CATALINA_HOME/bin/stop.sh  
     126}}} 
    107127 
    108128