gStore Figure Database Management System Installation Guide

It recently in contrast to the more fiery of the current map database management system in the process of digging into a domestic open-source database management system diagram Gstore, found that the faster processing speed compared to the API and more abundant in contrast neo4j and Jena after, but the installation process is relatively It is more complicated. Although it complicated, but the most important point is that domestic software, and provides a single version that can be used to build personal or internal use, once the decision to give everyone in the Amway installed.

System Requirements

Ubuntu
Cent OS
other LINUX (should be feasible in principle, but there is no actual operation)

project address

https://github.com/pkumod/gStore

installation steps

The vast majority of the mirror comes with ubuntu install git, so this is not repeated here.

Download Code

git clone https://github.com/pkumod/gStore.git

Dependent libraries

A list of library dependencies gstore in need of help documentation

sudo apt-get install unzip zip
sudo apt-get install openjdk-8-jdk
sudo apt-get install gcc
sudo apt-get install g++
sudo apt-get install libreadline-dev
sudo apt-get install libboost-all-dev
sudo apt-get install libcurl4 libcurl4-openssl-dev

It should be noted that the last curl dependent libraries in the installation process should be ubuntu16.04 error, so we use another way to install

wget https://curl.haxx.se/download/curl-7.55.1.tar.gz
tar -xzvf curl-7.55.1.tar.gz
cd curl-7.55.1
./configure
make
make install

installation

! ! This step is the most important, it is recommended that you use privileged accounts to operate! !
(Of course, each preceded by sudo may be in the current account)

cd gStore
make pre
make
make
bin/ginit

Comparative Example

Here it is to build a good example, after a successful installation should be like this.
http://openkg.gstore-pku.com

references

  1. Lei Zou, Jinghui Mo, Lei Chen,M. Tamer Özsu, Dongyan Zhao, gStore: Answering SPARQL Queries Via Subgraph Matching, Proc. VLDB 4(8): 482-493, 2011.
  2. Xuchuan Shen, Lei Zou, M. Tamer Özsu, Lei Chen, Youhuan Li, Shuo Han, Dongyan Zhao, A Graph-based RDF Triple Store, in Proc. 31st International Conference on Data Engineering (ICDE), 2015.
  3. Dong Wang, Lei Zou, Yansong Feng, Xuchuan Shen, Jilei Tian, and Dongyan Zhao,S-store: An Engine for Large RDF Graph Integrating Spatial Information, in Proc. 18th International Conference on Database Systems for Advanced Applications (DASFAA), pages 31-47, 2013.
  4. Dong Wang, Lei Zou and Dongyan Zhao, gst-Store: An Engine for Large RDF Graph Integrating Spatiotemporal Information, in Proc. 17th International Conference on Extending Database Technology (EDBT), pages 652-655, 2014.
  5. Peng Peng, Lei Zou, Lei Chen, Dongyan Zhao, Query Workload-based RDF Graph Fragmentation and Allocation. EDBT (2016) , EDBT.
  6. Lei Zou, Yueguo Chen, A Survey of Large-Scale RDF Data Management, Comunications of CCCF Vol.8(11): 32-43, 2012 .
Released six original articles · won praise 5 · Views 421

Guess you like

Origin blog.csdn.net/weixin_40469691/article/details/105368388