Can't connect to neo4j server during build

Hi @mikemarsian,

Can you try starting neo4j by including it as a service in your circle.yml? You’ll also need to disable auth as demonstrated here.

tl;dr Add the following to your circle.yml:

machine:
  pre:
    - sudo sed -i "s|dbms.security.auth_enabled=true|dbms.security.auth_enabled=false|g" /etc/neo4j/neo4j-server.properties
  services:
    - neo4j

Cheers,
Frank

1 Like