updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / neo4j / config.patch
blob201482726811a5c4844fc462bb9ed2d528ef6664
1 diff -ur neo4j-community-1.4.1.orig/conf/logging.properties neo4j-community-1.4.1/conf/logging.properties
2 --- neo4j-community-1.4.1.orig/conf/logging.properties 2011-08-02 06:38:24.000000000 -0600
3 +++ neo4j-community-1.4.1/conf/logging.properties 2011-08-03 08:14:34.578196357 -0600
4 @@ -16,7 +16,7 @@
5 # The set of handlers to be loaded upon startup.
6 # Comma-separated list of class names.
7 # (? LogManager docs say no comma here, but JDK example has comma.)
8 -handlers=java.util.logging.FileHandler, java.util.logging.ConsoleHandler
9 +handlers=java.util.logging.FileHandler
11 # Default global logging level.
12 # Loggers and Handlers may override this level
13 @@ -52,7 +52,7 @@
14 # "%g" the generation number to distinguish rotated logs
15 # "%u" a unique number to resolve conflicts
16 # "%%" translates to a single percent sign "%"
17 -java.util.logging.FileHandler.pattern=data/log/neo4j.%u.%g.log
18 +java.util.logging.FileHandler.pattern=/var/log/neo4j/neo4j.%u.%g.log
20 # Specifies whether the FileHandler should append onto any existing files (defaults to false).
21 java.util.logging.FileHandler.append=true
22 diff -ur neo4j-community-1.4.1.orig/conf/neo4j-server.properties neo4j-community-1.4.1/conf/neo4j-server.properties
23 --- neo4j-community-1.4.1.orig/conf/neo4j-server.properties 2011-08-02 06:38:24.000000000 -0600
24 +++ neo4j-community-1.4.1/conf/neo4j-server.properties 2011-08-03 08:14:06.801680169 -0600
25 @@ -8,7 +8,7 @@
26 #***************************************************************
28 # location of the database directory
29 -org.neo4j.server.database.location=data/graph.db
30 +org.neo4j.server.database.location=/var/lib/neo4j/data/graph.db
32 # http port (for all data, administrative, and UI access)
33 org.neo4j.server.webserver.port=7474
34 @@ -19,7 +19,7 @@
35 #*****************************************************************
37 # location of the servers round-robin database directory
38 -org.neo4j.server.webadmin.rrdb.location=data/graph.db/../rrd
39 +org.neo4j.server.webadmin.rrdb.location=/var/lib/neo4j/data/rrd
41 # REST endpoint for the data API
42 # Note the / in the end is mandatory
43 @@ -29,7 +29,7 @@
44 org.neo4j.server.webadmin.management.uri=/db/manage/
46 # Low-level graph engine tuning file
47 -org.neo4j.server.db.tuning.properties=conf/neo4j.properties
48 +org.neo4j.server.db.tuning.properties=/etc/neo4j/neo4j.properties
51 #Comma separated list of JAXRS packages contains JAXRS Resoruce, one package name for each mountpoint.