Aeolus: How to get started
From Pmgwiki
(Difference between revisions)
(→Directions for checking out and running code) |
(→Directions for checking out and running code) |
||
Line 6: | Line 6: | ||
# Check out code | # Check out code | ||
#*svn co svn+ssh://<Your-Name-Here>@lirone.csail.mit.edu/space/svnroot/aeolus/src<br> | #*svn co svn+ssh://<Your-Name-Here>@lirone.csail.mit.edu/space/svnroot/aeolus/src<br> | ||
- | #* | + | #* alternatively use eclipse to check out the sources from the repo |
# Build code | # Build code | ||
#*find build.xml in the tree at shown by eclipse and use eclipse + ant build to build<br> | #*find build.xml in the tree at shown by eclipse and use eclipse + ant build to build<br> |
Revision as of 17:50, 7 February 2011
Directions for checking out and running code
- Prerequisites
- MySql database
- java 1.6
- Check out code
- svn co svn+ssh://<Your-Name-Here>@lirone.csail.mit.edu/space/svnroot/aeolus/src
- alternatively use eclipse to check out the sources from the repo
- svn co svn+ssh://<Your-Name-Here>@lirone.csail.mit.edu/space/svnroot/aeolus/src
- Build code
- find build.xml in the tree at shown by eclipse and use eclipse + ant build to build
- find build.xml in the tree at shown by eclipse and use eclipse + ant build to build
- Create environment
- Create databases (once)
- AUTHORITY SERVER
- CREATE DATABASE AeolusAuthority;
- CONNECT AeolusAuthority;
- GRANT ALL ON * TO 'aeolus'@'localhost' IDENTIFIED BY 'PFlate762!';
- AUDITING (per auditing/MySQLPersistentLogging.java)
- CREATE DATABASE AeolusLogging;
- CONNECT AeolusLogging;
- GRANT ALL ON * TO 'aeolusLogger'@'localhost' IDENTIFIED BY 'PFlate762!';
- AUTHORITY SERVER
- Create databases (once)
- Start authority server and audit server
- cd ~/workspace/aeolus/dist ./aeolus-server.jar &
- Start authority server and audit server
- Run code
- java -cp ~/workspace/aeolus/aeolus/dist/aeolus-rt.jar edu.mit.csail.aeolus.runtime.RuntimeLoader ~/workspace/aeolus/aeolus/dist/aeolus-medical.jar edu.mit.csail.aeolus.apps.testapps.HelloWorld
- java -cp ~/workspace/aeolus/aeolus/dist/aeolus-rt.jar edu.mit.csail.aeolus.runtime.RuntimeLoader ~/workspace/aeolus/aeolus/dist/aeolus-medical.jar edu.mit.csail.aeolus.apps.testapps.HelloWorld
Note: aeolus-medical.jar contains all the classes in apps (or at least approximately)