I have neo4j 2.1.1 running on a headless linux box (RHEL 6.4). I verified that the server is running. I verified that there's a listener on port 7474. I verified that the line in conf/neo4j-server.properties is uncommented to allow access to the web interface from any machine.
curl http://localhost:7474 returns a 503 error, as does browsing to the machine:7474
I'm sure I"m missing something pretty basic, and appreciate any help. This worked previously, but the machine got restarted recently and now it doesn't work. I vaguely remember doing something with iptables, but could not find the tutorial I used previously.
Output of curl:
curl http://localhost:7474/webadmin
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=ISO-8859-1"/>
<title>Error 503 </title>
</head>
<body>
<h2>HTTP ERROR: 503</h2>
<p>Problem accessing /webadmin. Reason:
<pre> Service Unavailable</pre></p>
<hr /><i><small>Powered by Jetty://</small></i>
</body>
</html>
>netstat -anp |grep 7474
tcp 0 0 :::7474 :::* LISTEN 475/java
>service neo4j-service status
Neo4j Server is running at pid 475
curl http://localhost:7474/first - Michael Hunger