-
Notifications
You must be signed in to change notification settings - Fork 173
Quick_Start
Brad Bebee edited this page Feb 13, 2020
·
1 revision
You can start your acquaintance with Blazegraph™ from Blazegraph Workbench (a frontend to the NanoSparqlServer), just running it from a command line.
Download the latest blazegraph.jar file and run it:
java -server -Xmx4g -jar blazegraph.jar
...
serviceURL: http://127.0.0.1:9999
Welcome to Blazegraph(tm) by SYSTAP.
Go to http://localhost:9999/blazegraph/ to get started.
Once it started, the default workbench location is http://localhost:9999/blazegraph/:
You can load the file /tmp/blazgraph/data.n3 (for example, get this file) through the "Update" tab:
load <file:///tmp/blazegraph/data.n3>
You can issue SPARQL queries through the "Query" tab:
select * where { <http://blazegraph.com/blazegraph> ?p ?o }