-
Notifications
You must be signed in to change notification settings - Fork 10
Jena DB On Fuseki Server
sepidetari edited this page Jul 6, 2018
·
31 revisions
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.
Browse to localhost:3030 the credentials are are admin and the password you will find the the logs.
docker logs fuseki
To override the admin-password use the following form:
-e ADMIN_PASSWORD= yourMewPassword
• Turtle