user3422131
user3422131

Reputation: 1

Windows Azure Cloud Service Access

I have created Virtual Machine Windows 2012 Server on Azure and installed Neo4j on that VM. One of the clod service is created for that by Azure as DNS Name.cloudapp.net I want to know how to access that from my laptop so that I can access Neo4j database from my laptop which is in Azure.

Upvotes: 0

Views: 136

Answers (1)

David Makogon
David Makogon

Reputation: 71121

So... you spun up a VM, and are just trying to access it remotely? You need to create public endpoints. For neo4j specifically, you'll want to open ports 7474 and 1337. Here's how I have one of my neo4j servers set up:

enter image description here

The endpoint names are arbitrary - just for your reference.

Now: You'll need to think about securing these endpoints, once you open them up. Notice the Manage ACL item on the bottom of the endpoint list. With that, you can specify allowed/denied IP address ranges. With this, you can filter to only allow traffic from your local office/home's public IP address.

Upvotes: 2

Related Questions