Difference between revisions of "Allegrograph"

From Biowikifarm Metawiki
Jump to: navigation, search
(Created page with "==Allegrograph== Documentation can be found: franz.com/agraph/support/documentation/current/agraph-quick-start.htm ===Installation (on Ubuntu)=== 1.Download from http://franz...")
 
 
(10 intermediate revisions by the same user not shown)
Line 4: Line 4:
 
===Installation (on Ubuntu)===
 
===Installation (on Ubuntu)===
  
1.Download from
+
# Download from http://franz.com/downloads.lhtml  
http://franz.com/downloads.lhtml
+
#  tar zxf agraph-5.0-linuxamd64.64.tar.gz
 +
#  agraph-5.0/install-agraph --directory
 +
#  For license key (<s>1 trillion</s>'''unlimited''' triples)
  
2.  tar zxf agraph-5.0-linuxamd64.64.tar.gz
+
insert entire key into agraph/lib/agraph.cfg  (Don't copy email)
 
+
3. agraph-5.0/install-agraph --directory
+
 
+
4. For license key ('''unlimited''' triples)
+
 
===Run===
 
===Run===
  
 
You can start AllegroGraph by running:   
 
You can start AllegroGraph by running:   
/home/joe/tmp/ag5.0/bin/agraph-control --config /home/joe/tmp/ag5.0/lib/agraph.cfg start   
+
<syntaxhighlight lang="bash">
 +
/home/joe/tmp/ag5.0/bin/agraph-control --config /home/joe/tmp/ag5.0/lib/agraph.cfg start
 +
</syntaxhighlight>  
 
   
 
   
 
You can stop AllegroGraph by running:   
 
You can stop AllegroGraph by running:   
 +
<syntaxhighlight lang="bash">
 
/home/joe/tmp/ag5.0/bin/agraph-control --config /home/joe/tmp/ag5.0/lib/agraph.cfg stop
 
/home/joe/tmp/ag5.0/bin/agraph-control --config /home/joe/tmp/ag5.0/lib/agraph.cfg stop
 +
</syntaxhighlight>
 +
 +
===Usage===
 +
Loading
 +
<syntaxhighlight lang="bash">
 +
./agload myDB2 /home/richarddi/testQuery/TechnoBioblitzOccurrences_small.rdf
 +
</syntaxhighlight>
 +
 +
Querying
 +
<syntaxhighlight lang="bash">
 +
./agquery myDB2 /home/richarddi/testQuery/query.rq
 +
</syntaxhighlight>
 +
 +
Note that extension of query file must conform to standards (.sparql not allowed)
 +
 +
===Issues===
 +
 +
1. Logging
 +
Querying log at /bin and system log /log,
 +
add --debug -v -v option to agload for logging
 +
 +
2.Permission
 +
All folders should belong to agraph for excecution

Latest revision as of 19:18, 2 March 2015

Allegrograph

Documentation can be found: franz.com/agraph/support/documentation/current/agraph-quick-start.htm

Installation (on Ubuntu)

  1. Download from http://franz.com/downloads.lhtml
  2. tar zxf agraph-5.0-linuxamd64.64.tar.gz
  3. agraph-5.0/install-agraph --directory
  4. For license key (1 trillionunlimited triples)

insert entire key into agraph/lib/agraph.cfg (Don't copy email)

Run

You can start AllegroGraph by running:

/home/joe/tmp/ag5.0/bin/agraph-control --config /home/joe/tmp/ag5.0/lib/agraph.cfg start

You can stop AllegroGraph by running:

/home/joe/tmp/ag5.0/bin/agraph-control --config /home/joe/tmp/ag5.0/lib/agraph.cfg stop

Usage

Loading

./agload myDB2 /home/richarddi/testQuery/TechnoBioblitzOccurrences_small.rdf

Querying

./agquery myDB2 /home/richarddi/testQuery/query.rq

Note that extension of query file must conform to standards (.sparql not allowed)

Issues

1. Logging Querying log at /bin and system log /log, add --debug -v -v option to agload for logging

2.Permission All folders should belong to agraph for excecution