【发布时间】:2017-09-26 21:16:51
【问题描述】:
我已经安装了 fuseki 并使用
启动服务器#!/bin/sh
cd /home/frank/localInstall/jena/apache-jena-fuseki-2.5.0
exec /home/frank/localInstall/jena/apache-jena-fuseki-2.5.0/fuseki-server -v --update --mem /testDB
服务器正在运行,程序可以将数据存储在 /testDB 中,但是 web 界面没有显示数据集,我无法添加数据集。当我尝试查询界面时显示Please select a dataset.
我想我之前遇到过这个问题,并通过重新安装 fuseki 文件夹解决了这个问题。我想了解我做错了什么以及如何避免这个问题。 谢谢!
配置文件是自动生成的。它是:
# Licensed under the terms of http://www.apache.org/licenses/LICENSE-2.0
## Fuseki Server configuration file.
@prefix : <#> .
@prefix fuseki: <http://jena.apache.org/fuseki#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix ja: <http://jena.hpl.hp.com/2005/11/Assembler#> .
[] rdf:type fuseki:Server ;
# Example::
# Server-wide query timeout.
#
# Timeout - server-wide default: milliseconds.
# Format 1: "1000" -- 1 second timeout
# Format 2: "10000,60000" -- 10s timeout to first result,
# then 60s timeout for the rest of query.
#
# See javadoc for ARQ.queryTimeout for details.
# This can also be set on a per dataset basis in the dataset assembler.
#
# ja:context [ ja:cxtName "arq:queryTimeout" ; ja:cxtValue "30000" ] ;
# Add any custom classes you want to load.
# Must have a "public static void init()" method.
# ja:loadClass "your.code.Class" ;
# End triples.
.
如果我想将数据集提供给客户端和网络浏览器界面,我应该如何更改它?
【问题讨论】:
-
你能发布你的配置文件吗?