gpt4 book ai didi

docker - 如何使用命令行向 Apache Fuseki 添加新数据集?

转载 作者:行者123 更新时间:2023-12-04 01:42:30 25 4
gpt4 key购买 nike

我正在按照 this Docker image 的说明进行操作,其中描述了如何使用 Apache Fuseki 设置新的容器化 RDF 三元组。我想我可以使用 Dockerfile 为我的数据集自动执行这些说明中的所有步骤,但是在“识别 Fuseki 中的数据集”下有一个步骤让您进入 GUI 界面并在那里添加一个新数据集。由于我最终想自动执行此过程,因此我想找到一种命令行方式来添加新数据集。它不需要任何花哨的东西,只需添加一个具有给定名称的新数据集,例如“db”。有没有办法做到这一点? (我想,还有一种在 docker 容器中运行该命令的方法?)

最佳答案

这是你需要做的:

(1) 使用 docker run -p 3030:3030 -it stain/jena-fuseki 启动容器。

(2) 使用 docker ps 查找容器的 ID $$$。

(3) 使用 docker container cp config.ttl $$$:config.ttlconfig.ttl 文件复制到您的 docker 容器。 config.ttl 示例如下所示:

@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 tdb: <http://jena.hpl.hp.com/2008/tdb#> .
@prefix ja: <http://jena.hpl.hp.com/2005/11/Assembler#> .
@prefix : <#> .

<#service1> rdf:type fuseki:Service ;
fuseki:name "ds" ; # http://host:port/ds
fuseki:serviceQuery "sparql" ; # SPARQL query service
fuseki:serviceQuery "query" ; # SPARQL query service (alt name)
fuseki:serviceUpdate "update" ; # SPARQL update service
fuseki:serviceUpload "upload" ; # Non-SPARQL upload service
fuseki:serviceReadWriteGraphStore "data" ; # SPARQL Graph store protocol (read and write)
# A separate read-only graph store endpoint:
fuseki:serviceReadGraphStore "get" ; # SPARQL Graph store protocol (read only)
fuseki:dataset <#dataset> ;
.

<#dataset> rdf:type tdb:DatasetTDB ;
tdb:location "DB" ;
# Query timeout on this dataset (1s, 1000 milliseconds)
ja:context [ ja:cxtName "arq:queryTimeout" ; ja:cxtValue "1000" ] ;
# Make the default graph be the union of all named graphs.
## tdb:unionDefaultGraph true ;
.

(4) 使用 docker container commit $$$ stackoverflow/jena-fuseki:latest 提交对容器的更改。

(5) 使用以下命令重新启动您的容器:docker run -p 3030:3030 -it stackoverflow/jena-fuseki ./fuseki-server --config=/config.ttl

(6) 如果您现在转到 http://localhost:3030,您应该会看到您的数据集。

关于docker - 如何使用命令行向 Apache Fuseki 添加新数据集?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50203347/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com