我正在使用py2neo(2020.1.0)在Neo4j中进行连接和查询,出现以下错误
No write operations are allowed directly on this database. Writes must pass through the leader. The role of this server is: FOLLOWER
我使用neo4j+s:方案进行连接,当我浏览了neo4j+s:将负责路由的文章时。但它似乎不起作用。有没有可能带着它到处走走?
发布于 2021-01-17 18:17:28
如果你想打开与FOLLOWER的连接,但写的是要发送给LEADER的,则需要使用bolt+routing:
./cypher-shell -a bolt+routing://the_follower:7637https://stackoverflow.com/questions/65740903
复制相似问题