Fuseki

Fuseki is very easy to setup

  1. Download latest jena-fuseki distribution tarball from http://www.apache.org/dist/jena/binaries/
  2. Unpack the download archive 
  3. Start fuseki-server
curl -O http://www.apache.org/dist/jena/binaries/jena-fuseki-1.0.0-distribution.tar.gz
tar xvfz jena-fuseki-1.0.0-distribution.tar.gz
cd jena-fuseki-1.0.0
./fuseki-server --update --mem /test

Fuseki should 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).

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:

curl -L -O http://sourceforge.net/projects/sesame/files/Sesame%202/2.7.7/openrdf-sesame-2.7.7-sdk.tar.gz
tar xvfz openrdf-sesame-2.7.7-sdk.tar.gz 
cp openrdf-sesame-2.7.7/war/openrdf-sesame.war <tomcat/webapps/directory>

Sesame should be running at: http://localhost:8080/openrdf-sesame/home/overview.view

Notes

Documentation