So I've installed Solr on a linux server and I want to access it from another web server and/or my computer.
From the Solar Server, I can see that it's running
[root@solr ~]# wget -qO- http://localhost:8983/solr
<html>
<head>
<link rel="stylesheet" type="text/css" href="solr-admin.css">
<link rel="icon" href="favicon.ico" type="image/ico"></link>
<link rel="shortcut icon" href="favicon.ico" type="image/ico"></link>
<title>Welcome to Solr</title>
</head>
<body>
<h1>Welcome to Solr!</h1>
<a href="."><img border="0" align="right" height="78" width="142" src="admin/solr_small.png" alt="Solr"/></a>
<a href="admin/">Solr Admin</a>
</body>
</html>
However, plugging http://192.168.1.19:8983/solr/
into my browser, or pinging from my web server, fails to connect. How do I make Solr accessible to other devices on my network?
# netstat -anp | grep :8983
tcp 0 0 :::8983 :::* LISTEN 15138/java
$ telnet 192.168.1.19 8983
Trying 192.168.1.19...
telnet: connect to address 192.168.1.19: Connection refused
telnet: Unable to connect to remote host