Skip to content

Jena DB On Fuseki Server

sepidetari edited this page Jul 6, 2018 · 31 revisions

Download and install

Download image, start and run docker container with the right port. To store fuseki data in a specified location on the host (e.g. for disk space), specify it using -v :

Download:

docker pull stain/jena-fuseki:3.4.0

Run:

docker run -d --name fuseki -e ADMIN_PASSWORD=sask12345 -p 3030:3030 -v C:/data/fuseki:/fuseki stain/jena-fuseki:3.4.0
sudo docker run -d --name fuseki -e ADMIN_PASSWORD=sask12345 -p 3030:3030 -v /ssd/data/fuseki:/fuseki stain/jena-fuseki:3.4.0

If the C:/data/fuseki folder was not created automatically(after running above command), create it firstly then run the command.

Access Fuseki

Browse to localhost:3030 the credentials are are admin and the password you will find the the logs.

docker logs fuseki 

Login and then create a persistent dataset, name it "sask".

To override the admin-password use the following form:

-e ADMIN_PASSWORD= yourMewPassword

Accepted RDF format to be stored in dataset

• Turtle