1
votes

I have a neo4j database which is hosted on Amaozon EC2. I have created a C# application which used neo4jclient to read and update the neo4j database on Amazon server.

In amazon I had to open 7474 port on which neo4j server is listening so that my c# application can interact with it

How can I secure my neo4j server so that only my client can update the neo4j db?

1

1 Answers

0
votes

Have you looked at the neo4j-server.properties configuration file, there you can define which IP addresses can communicate with it.

Additionally you could also look at this and this

or try this extension

hope one of them will work for you.