3

We've installed Fuseki2 as a service at a Ubuntu-server and its works fine:

sudo service fuseki status * Fuseki is running with pid: 915

I now can go to http://xyz:30303/manage.html (where xyz it the ip-address of the server) and it shows the Manage datasets screen, but nothing happens when I click add new dataset.

Console browser (and also http://xyz:3030/$/server) gives "Failed to load resource: the server responded with a status of 403 (Access denied : only localhost access allowed)"

How do I configure this correctly?

waanders
  • 8,907
  • 22
  • 70
  • 102

2 Answers2

3

Default security, using shiro, limits access to localhost. You can find information on security configuration here http://jena.apache.org/documentation/fuseki2/fuseki-security.html and examples in the default shiro.ini

chrisis
  • 1,983
  • 5
  • 20
  • 17
2

shiro.ini

and the rest are restricted to localhost.

/$/** = localhostFilter <- change to 'anon'

Jan Ma
  • 31
  • 3