This page describes how to achieve certain common tasks in the most direct way possible.
Running with Apache Jena Fuseki loading a file.
- Download the versioned distribution file `apache-jena-fuseki-VER.zip'
- Unpack the distribution. The directory will be
apache-jena-fuseki-VER/
- Run the script
fuseki-server
, orfuseki-server.bat
. - In your browser, go to http://localhost:3030/ (details such as port number depend optional arguments on the start-up script).
- Click on “Add one”, choose “in-memory”, choose a name for the URL for the dataset.
- Go to “add data” and load the file (single graph).
Try fuseki-server --help
for command line options.
Publish an RDF file as a SPARQL endpoint.
- Unpack the distribution.
- Run fuseki-server –file FILE /name
The SPARQL endpoint will be http://localhost:3030/name/sparql and the SPARQL UI at http://localhost:3030/#/dataset/name/query.
Explore a TDB database
- Unpack the distribution.
- Run fuseki-server –loc=DATABASE /name
- In a browser, go to http://localhost:3030/#/dataset/name/query.html
More details on running Fuseki can be found on the Fuseki Server page, including running as an operating system service or as a web app on a servlet container such as Apache Tomcat.