sh Neo4j - 在Codeship构建盒上下载并启动带有空间插件的Neo4j
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh Neo4j - 在Codeship构建盒上下载并启动带有空间插件的Neo4j相关的知识,希望对你有一定的参考价值。
#/bin/bash
VERSION="2.2.3"
VERSION_SPACIAL="0.15"
PORT_DB=7476 #7474
PORT_ADM=7475 #7473
PWD=$(pwd)
cd ~/
#Install neo4j
wget -O neo4j-community.tar.gz http://neo4j.com/artifact.php?name=neo4j-community-${VERSION}-unix.tar.gz
tar -xzf neo4j-community.tar.gz
rm -f neo4j-community.tar.gz
mv neo4j-community* neo4j-community
#Install spacial plugins
cd ~/neo4j-community/plugins
wget -O neo4j-spatial-plugin.zip https://github.com/neo4j-contrib/m2/blob/master/releases/org/neo4j/neo4j-spatial/${VERSION_SPACIAL}-neo4j-${VERSION}/neo4j-spatial-${VERSION_SPACIAL}-neo4j-${VERSION}-server-plugin.zip?raw=true
unzip neo4j-spatial-plugin.zip
# configure neo4j to run on testing ports (7476 + 7475)
sed -i s/7474/${PORT_DB}/g ~/neo4j-community/conf/neo4j-server.properties
sed -i s/7473/${PORT_ADM}/g ~/neo4j-community/conf/neo4j-server.properties
~/neo4j-community/bin/neo4j start
cd $PWD
以上是关于sh Neo4j - 在Codeship构建盒上下载并启动带有空间插件的Neo4j的主要内容,如果未能解决你的问题,请参考以下文章
sh Codeship Android构建脚本
sh Codeship - NodeJS +业力测试
sh 用于elasticbeanstalk的Codeship部署脚本
sh WPEngine的Codeship Custom Deploy脚本
sh Codeship - Symfony2与mysql - phpunit
在我的 CI 管道中使用 docker-compose vs codeship-services