user285372
user285372

Reputation:

uploading a new protege ontology file on Jena Fuseki

How do I upload onto a remote machine a new ontology (.owl file) using the Fuseki web-server installed on my Mac?

I can authenticate and log in, but the first thing I would have to do is to select a data graph that is already there. Before picking the graph, I do not see any options to upload or update anything.

How can I upload a new Protege file through Fuseki?

Upvotes: 2

Views: 2452

Answers (1)

walter
walter

Reputation: 299

you can load the file by running this line on the shell:

./fuseki-server --file=path-to-my-file/my-file.owl /myowl

after you can access the ontology in:

http://localhost:3030/myowl

Upvotes: 3

Related Questions