Re: Accessing Port 9200 Remotely

2015-01-26 Thread Mark Walkom
You don't need the plugin, it can make discovery easier though. You haven't bound ES to localhost only have you? On 27 January 2015 at 09:42, Dave Mittner dave.mitt...@gmail.com wrote: I'm at a bit of a loss here... I have a pretty standard setup of elasticsearch and I'm able to curl/telnet

Re: Accessing Port 9200 Remotely

2015-01-26 Thread Dave Mittner
I'm binding to localhost; nothing else seems to work. I get Failed to bind errors in the log if I try using the actual hostname. On Monday, January 26, 2015 at 5:04:34 PM UTC-7, James Carr wrote: * make sure you haven't bound to 127.0.0.1 * make sure relevant security groups have been opened.

Re: Accessing Port 9200 Remotely

2015-01-26 Thread James Carr
You should bind to 0.0.0.0 not localhost. Then you can hit it remotely. You can also use a reverse-proxy. It is what we do :-) On Mon, Jan 26, 2015 at 6:16 PM, Dave Mittner dave.mitt...@gmail.com wrote: I'm binding to localhost; nothing else seems to work. I get Failed to bind errors in the

Accessing Port 9200 Remotely

2015-01-26 Thread Dave Mittner
I'm at a bit of a loss here... I have a pretty standard setup of elasticsearch and I'm able to curl/telnet to port 9200 locally, but the connection is refused if accessed from another server. I'm likewise unable to connect to port 9300. For Kibana3 I've also added: http.cors.allow-origin: *

Re: Accessing Port 9200 Remotely

2015-01-26 Thread James Carr
* make sure you haven't bound to 127.0.0.1 * make sure relevant security groups have been opened. On Mon, Jan 26, 2015 at 5:58 PM, Mark Walkom markwal...@gmail.com wrote: You don't need the plugin, it can make discovery easier though. You haven't bound ES to localhost only have you? On 27