--- neo4j.conf 2018-11-21 15:16:04.000000000 +0100 +++ neo4j_new.conf 2018-12-08 09:49:27.186983232 +0100 @@ -19,7 +19,7 @@ # This setting constrains all `LOAD CSV` import files to be under the `import` directory. Remove or comment it out to # allow files to be loaded from anywhere in the filesystem; this introduces possible security problems. See the # `LOAD CSV` section of the manual for details. -dbms.directories.import=import +# dbms.directories.import=import # Whether requests to Neo4j are authenticated. # To disable authentication, uncomment this line @@ -35,6 +35,7 @@ #dbms.memory.heap.initial_size=512m #dbms.memory.heap.max_size=512m + # The amount of memory to use for mapping the store files, in bytes (or # kilobytes with the 'k' suffix, megabytes with 'm' and gigabytes with 'g'). # If Neo4j is running on a dedicated server, then it is generally recommended @@ -51,7 +52,7 @@ # With default configuration Neo4j only accepts local connections. # To accept non-local connections, uncomment this line: -#dbms.connectors.default_listen_address=0.0.0.0 +dbms.connectors.default_listen_address=0.0.0.0 # You can also choose a specific network interface, and configure a non-default # port for each connector, by setting their individual listen_address. @@ -348,3 +349,33 @@ # Other Neo4j system properties #******************************************************************** dbms.jvm.additional=-Dunsupported.dbms.udc.source=tarball + +dbms.security.procedures.unrestricted=apoc.* + + +#******************************************************************** +# GraphAware +#******************************************************************** + +com.graphaware.runtime.enabled=true + +#UIDM becomes the module ID: +com.graphaware.module.UIDM.1=com.graphaware.module.uuid.UuidBootstrapper + +#optional, default is uuid: +com.graphaware.module.UIDM.uuidProperty=uuid + +#optional, default is false: +com.graphaware.module.UIDM.stripHyphens=false + +#optional, default is all nodes: +com.graphaware.module.UIDM.node=hasLabel('researcher') + +#optional, default is no relationships: +#com.graphaware.module.UIDM.relationship=isType('Type1') + +#optional, default is uuidIndex +com.graphaware.module.UIDM.uuidIndex=uuidIndex + +#optional, default is uuidRelIndex +com.graphaware.module.UIDM.uuidRelationshipIndex=uuidRelIndex