Skip to content

Archive Trac dn airavata

madscatt edited this page Jun 20, 2026 · 1 revision

Dn Airavata

Legacy Trac archive page imported from dn_airavata. Source: https://genapp.rocks/wiki/wiki/dn_airavata. Review age, links, and examples before treating as current.

Airavata setup

git clone https://github.com/apache/airavata
cd airavata
git pull
git checkout airavata-0.15-release-branch
  • shows current branch $ git branch
  • build notes IGNORE XBAYA bits
  • PGA install
  • get airavata running
    • install rabbitmq build server from source notes maybe binary is easier
    • start with # rabbitmq-server -detached
    • [https://cwiki.apache.org/confluence/display/AIRAVATA/Tutorial+09+-+XBAYA+Quick-Start] steps 4-9 primarily
    • redefine derby port by usage (for port error on startup with 1527)
You need to change these two places
registry.jdbc.url=jdbc:derby://localhost:1527/experiment_catalog;create=true;user=airavata;password=<redacted>
appcatalog.jdbc.url=jdbc:derby://localhost:1527/app_catalog;create=true;user=airavata;password=<redacted>
  • work with derby database with ij, e.g.:
     $ ij
     ij> connect 'jdbc:derby://localhost/experiment_catalog';
 -or-
     ij> connect 'jdbc:derby://localhost/app_catalog';
     ij> show tables;
     ij> select * from airavata.compute_resource;

or to save some typing
     ij> set schema airavata;
     ij> select * from compute_resource;
etc.

future

Clone this wiki locally