Reputation: 1729
I have a Windows Server 2012 virtual machine provisioned on Azure. I installed Neo4j server on this virtual machine and I'm accessing the Neo4j browser on localhost:7474
.
However I cannot access the browser outside using my virtual machine's public IP e.g <machineIP:7474>
Here's what I have done so far:
Port 80 and 443 as well
What possibly blocks me from accessing the virtual machine's IP from the outside?
Upvotes: 1
Views: 789
Reputation: 509
To remotely access Neo4j installed on a Windows VM in Azure, these are the changes you'll need to make:
org.neo4j.server.webserver.address=0.0.0.0
Note: In case you also want full access to Neo4j's browse interface including Bolt, then also add port 7687 both in the Azure Endpoints and the Windows Firewall.
Upvotes: 0
Reputation: 1411
You have to add TCP port 7474 to the firewall in the Azure portal:
Upvotes: 2
Reputation: 15490
change your neo4j-server.properties
set
org.neo4j.server.webserver.address=0.0.0.0
Upvotes: 1