You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
602 B
26 lines
602 B
#!/bin/sh |
|
## |
|
## neo4j-server.sh -- Neo4J Server Startup Wrapper |
|
## |
|
|
|
cp="" |
|
for file in \ |
|
@l_prefix@/lib/neo4j/server/*.jar \ |
|
@l_prefix@/lib/neo4j/plugin/*.jar; do |
|
if [ -f $file ]; then |
|
if [ ".$cp" = . ]; then |
|
cp="$file" |
|
else |
|
cp="$cp:$file" |
|
fi |
|
fi |
|
done |
|
|
|
exec @l_prefix@/bin/java \ |
|
-Vsun-jdk -Xms1024m -Xmx2048m -cp "$cp" \ |
|
-Dlog4j.configuration=file:@l_prefix@/etc/neo4j/neo4j-log4j.properties \ |
|
org.neo4j.server.CommunityEntryPoint \ |
|
--home-dir=@l_prefix@/var/neo4j \ |
|
--config-dir=@l_prefix@/etc/neo4j \ |
|
${1+"$@"} |
|
|
|
|