Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

sh curl -O http://www.apache.org/dist/jena/binaries/jena-fuseki-0.2.7-distribution.tar.gz
tar xvfz jena-fuseki-0.2.7-distribution.tar.gz
cd jena-fuseki-0.2.7
./fuseki-server --update --mem /test

Using the default settings, Fuseki will be running at http://localhost:3030/.  To access the SPARQL query form, go to http://localhost:3030/control-panel.tpl and select your datasource (in this case /test).  This allows you to perform SPARQL queries or updates, or upload an RDF file to replace the contents of the triplestore.

Sesame

Sesame requires a little more setup to run with the tests, since by default it uses the same port as Fedora. To setup Sesame with Tomcat running on an alternate port:

...