Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have install solr(apache-solr-1.4.1) on remote server from my computer and run all the commands given in solr tutorial. All the commands run fine. But on accessing it through browser with url: http://ip-add:8983/solr/admin/ it gives connection has time out(mozilla). please help

share|improve this question

closed as off topic by bažmegakapa, Sirko, Jason Heine, Konstantin D - Infragistics, animuson Nov 14 '12 at 17:13

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

2 Answers

access from local (wget), if working, check whether any firewall is blocking the port.

share|improve this answer
no firewall is off. To install solr on server I had just follwed the step from the tutorial. 1. Downloaded solr (apache 1.4) 2. unzip it. 3. Went to example directory and run java -jar start.jar to start solr. Is there anything i am missing? – VIKASH Jul 22 '11 at 10:08
  • Following the idea from KaKa - try to connect local to solr:

    wget http://ip-add:8983/solr/admin/

  • look, if the J2EE instance and solr is runnig:

    ps -efa | grep java

  • From you PC try to reach the remote (solr) Host by:

1.) ping <ip-add> (to check, if you can reach the server)

2.) telnet <ip-add> 8983 (to check, if you can establis an connection to the solr service)

share|improve this answer
I had tries this. I get response on ** ping <ip-add>** but not on telnet <ip-add> 8983. – VIKASH Jul 22 '11 at 10:07
@VIKASH so you know, that you can reach the server but no service. The reasons could be different. 1.)the port is blocked from the server-firewall. But usually, if your firewall is blocking all ports, which are not explicitly open/defined, the firewall would also block ping (echo request port). 2.) The J2EE instance is not running on that port or is not running at all. Did you checked the process-list (ps)? – The Bndr Jul 22 '11 at 10:21
@VIKASH relating to your comment to the answer of KaKa. Is your console-connection (where you entered java -jar start.jarstill open?). Keep in mind, that your solr/java process will terminate, if you close the telnet/ssh session to the server. To avoid this, start solr with nohup java -jar start.jar & – The Bndr Jul 22 '11 at 10:24

Not the answer you're looking for? Browse other questions tagged or ask your own question.