I installed neo4j on ec2 and started the service. If I curl http://localhost:7474
from within the remote shell, it returns something positive:
{
"management" : "http://localhost:7474/db/manage/",
"data" : "http://localhost:7474/db/data/",
"bolt" : "bolt://localhost:7687"
}
I opened port 7474 in the security group of my ec2 instance.
However when I try to access http://ec2-52-3-253-2.compute-1.amazonaws.com:7474/ in my browser, the site can't be reached.
Is there a step I am missing to expose the neo4j service to the public on ec2?