diff -U 3 -H -d -r -N -- neo4j-community-2.2.0-orig/conf/logging.properties neo4j-community-2.2.0-mod/conf/logging.properties --- neo4j-community-2.2.0-orig/conf/logging.properties 2015-03-24 09:59:49.000000000 -0300 +++ neo4j-community-2.2.0-mod/conf/logging.properties 2015-03-31 11:05:19.973195104 -0300 @@ -51,7 +51,7 @@ # "%g" the generation number to distinguish rotated logs # "%u" a unique number to resolve conflicts # "%%" translates to a single percent sign "%" -java.util.logging.FileHandler.pattern=data/log/neo4j.%u.%g.log +java.util.logging.FileHandler.pattern=/var/log/neo4j/neo4j.%u.%g.log # Specifies whether the FileHandler should append onto any existing files # (defaults to false): diff -U 3 -H -d -r -N -- neo4j-community-2.2.0-orig/conf/neo4j-http-logging.xml neo4j-community-2.2.0-mod/conf/neo4j-http-logging.xml --- neo4j-community-2.2.0-orig/conf/neo4j-http-logging.xml 2015-03-24 09:59:49.000000000 -0300 +++ neo4j-community-2.2.0-mod/conf/neo4j-http-logging.xml 2015-03-31 11:06:24.753192294 -0300 @@ -21,9 +21,9 @@ --> - data/log/http.log + /var/log/neo4j/http.log - data/log/http.%d{yyyy-MM-dd}.log + /var/log/neo4j/http.%d{yyyy-MM-dd}.log 7 diff -U 3 -H -d -r -N -- neo4j-community-2.2.0-orig/conf/neo4j-server.properties neo4j-community-2.2.0-mod/conf/neo4j-server.properties --- neo4j-community-2.2.0-orig/conf/neo4j-server.properties 2015-03-24 09:59:49.000000000 -0300 +++ neo4j-community-2.2.0-mod/conf/neo4j-server.properties 2015-04-15 09:52:34.556610762 -0300 @@ -10,10 +10,10 @@ #*************************************************************** # location of the database directory -org.neo4j.server.database.location=data/graph.db +org.neo4j.server.database.location=/var/lib/neo4j/data/graph.db # Low-level graph engine tuning file -org.neo4j.server.db.tuning.properties=conf/neo4j.properties +org.neo4j.server.db.tuning.properties=/etc/neo4j/neo4j.properties # Let the webserver only listen on the specified IP. Default is localhost (only # accept local connections). Uncomment to allow any connection. Please see the @@ -23,6 +23,9 @@ # Require (or disable the requirement of) auth to access Neo4j dbms.security.auth_enabled=true +# User auth data directory +dbms.security.auth_store.location=/var/lib/neo4j/data/dbms/auth + # # HTTP Connector # @@ -41,14 +44,14 @@ org.neo4j.server.webserver.https.port=7473 # Certificate location (auto generated if the file does not exist) -org.neo4j.server.webserver.https.cert.location=conf/ssl/snakeoil.cert +org.neo4j.server.webserver.https.cert.location=/etc/neo4j/ssl/snakeoil.cert # Private key location (auto generated if the file does not exist) -org.neo4j.server.webserver.https.key.location=conf/ssl/snakeoil.key +org.neo4j.server.webserver.https.key.location=/etc/neo4j/ssl/snakeoil.key # Internally generated keystore (don't try to put your own # keystore there, it will get deleted when the server starts) -org.neo4j.server.webserver.https.keystore.location=data/keystore +org.neo4j.server.webserver.https.keystore.location=/var/lib/neo4j/data/keystore # Comma separated list of JAX-RS packages containing JAX-RS resources, one # package name for each mountpoint. The listed package names will be loaded @@ -71,7 +74,7 @@ # archived. Note: changing the rollover and retention policy is sensible, but # changing the output format is less so, since it is configured to use the # ubiquitous common log format -org.neo4j.server.http.log.config=conf/neo4j-http-logging.xml +org.neo4j.server.http.log.config=/etc/neo4j/neo4j-http-logging.xml #***************************************************************** @@ -82,4 +85,4 @@ # - absolute path like /var/rrd # - path relative to the server working directory like data/rrd # - commented out, will default to the database data directory. -org.neo4j.server.webadmin.rrdb.location=data/rrd +org.neo4j.server.webadmin.rrdb.location=/var/lib/neo4j/data/rrd diff -U 3 -H -d -r -N -- neo4j-community-2.2.0-orig/conf/neo4j-wrapper.conf neo4j-community-2.2.0-mod/conf/neo4j-wrapper.conf --- neo4j-community-2.2.0-orig/conf/neo4j-wrapper.conf 2015-03-24 09:59:49.000000000 -0300 +++ neo4j-community-2.2.0-mod/conf/neo4j-wrapper.conf 2015-03-31 12:28:30.216312067 -0300 @@ -2,9 +2,9 @@ # Property file references #******************************************************************** -wrapper.java.additional=-Dorg.neo4j.server.properties=conf/neo4j-server.properties -wrapper.java.additional=-Djava.util.logging.config.file=conf/logging.properties -wrapper.java.additional=-Dlog4j.configuration=file:conf/log4j.properties +wrapper.java.additional=-Dorg.neo4j.server.properties=/etc/neo4j/neo4j-server.properties +wrapper.java.additional=-Djava.util.logging.config.file=/etc/neo4j/logging.properties +wrapper.java.additional=-Dlog4j.configuration=file:/etc/neo4j/log4j.properties #******************************************************************** # JVM Parameters @@ -16,7 +16,7 @@ wrapper.java.additional=-XX:hashCode=5 # Uncomment the following lines to enable garbage collection logging -#wrapper.java.additional=-Xloggc:data/log/neo4j-gc.log +#wrapper.java.additional=-Xloggc:/var/log/neo4j/neo4j-gc.log #wrapper.java.additional=-XX:+PrintGCDetails #wrapper.java.additional=-XX:+PrintGCDateStamps #wrapper.java.additional=-XX:+PrintGCApplicationStoppedTime @@ -33,8 +33,7 @@ #******************************************************************** # Wrapper settings #******************************************************************** -# path is relative to the bin dir -wrapper.pidfile=../data/neo4j-server.pid +wrapper.pidfile=/run/neo4j/neo4j-server.pid #******************************************************************** # Wrapper Windows NT/2000/XP Service Properties @@ -49,7 +48,7 @@ # User account to be used for linux installs. Will default to current # user if not set. -wrapper.user= +wrapper.user=neo4j #******************************************************************** # Other Neo4j system properties