I keep getting the same error when trying to connect Gephi to Neo4j. What am I doing wrong? I tried to reproduce the example from here: https://tbgraph.wordpress.com/2017/04/01/neo4j-to-gephi/
Environment Preparation:
- Installed the apoc.gephi.add from GitHub Step
- Gephi:Installed add-in for Graph Streaming
- Gephi: Master Server started (turns green )
Reproduceable example
in Neo4j:
- Type ":play movies" into the cmd line $
- click right arrow to load code into cmd line $
- Now nodes and relationship types appear in Neo4j
Enter the code below:
MATCH (p1:Person)-->(:Movie)<--(p2:Person) where id(p1) < id(p2) MERGE (p1)-[r:KNOWS]-(p2) ON CREATE SET r.weight = 1 ON MATCH SET r.weight = r.weight + 1
MATCH path = (:Person)-[:KNOWS]->(:Person) CALL apoc.gephi.add("http://localhost:7474",'WS1',path,'weight') yield nodes return *
This should connect with Gephi and you should see a graph populate in Gephi. But I got this error:
http://localhost:7474/WS1?operation=updateGraph as json: cannot retry due to server authentication, in streaming mode Error mssg