PTTT
PTTT

Reputation: 251

How to have two Neo4j edition in one computer (Community and Enterprise)

I first installed and configured Neo4j Enterprise edition on my Computer with windows 10 operating system and then installed and configured Community edition on my computer. How can I switch between these two edition on the browser?? When I connect to localhost:7474\browser which one of the edition I can see?? and how can I configure that? Thank you

Upvotes: 1

Views: 78

Answers (1)

William Lyon
William Lyon

Reputation: 8546

You can run multiple instances of Neo4j on the same machine, you just have to make sure they are listening on different ports. Specifically, you'll need to set dbms.connector.bolt.listen_address and dbms.connector.http.listen_address (this is the port you connect to to access Neo4j Broswer) to be different on each instance you want to run. The default is:

dbms.connector.bolt.listen_address=:7687
dbms.connector.http.listen_address=:7474

These settings are available in neo4j.conf

Upvotes: 2

Related Questions