blob: df5e2fb68db3e0f94ecd3099063c7a9695a49358 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# utilities to be sourced for rhizi bash scripts
if [ "x$NEO4J_ROOT" == "x" ]; then
NEO4J_SHELL=`which neo4j-shell`
if [ "x$NEO4J_SHELL" == "x" ]; then
echo missing neo4j-shell, please define NEO4J_ROOT or place neo4j-shell in PATH
exit 1
fi
else
NEO4J_SHELL="$NEO4J_ROOT/bin/neo4j-shell"
if [ ! -e $NEO4J_SHELL ]; then
echo "\$NEO4J_ROOT/bin/neo4j-shell does not exist, fix NEO4J_ROOT"
exit 1
fi
fi
function quit_if_no_neo4j_running () {
if [ `uname` == "Darwin" ]; then
neo4j_count=`netstat -na -ptcp 2>/dev/null | grep 7474 | wc -l`
else
neo4j_count=`netstat -ltnop 2>/dev/null | grep 7474 | wc -l`
fi
if [ $neo4j_count == "0" ]; then
echo run neo4j please
exit 0
fi
}
|