user3487903
user3487903

Reputation: 1

java.lang.NoSuchFieldError: cypher_parser_version

I am getting below exception while starting NeoServer-

Exception in thread "main" java.lang.NoSuchFieldError: cypher_parser_version  

Upvotes: 0

Views: 226

Answers (1)

Jacob Davis-Hansson
Jacob Davis-Hansson

Reputation: 2663

This kind of exception generally indicates accidentally mixing Java Jars from different Neo4j versions.

If you've downloaded the .tar.gz server from Neo4j.org, make sure you've not made changes to the jar files or added any external jars into the server.

If you are starting the server from inside a java application, go over your dependencies and make extra sure you have no version mixups or multiple versions of some jar. You can dump the whole dependency graph if you use Maven using:

mvn dependency:tree

Upvotes: 1

Related Questions