Re: Please suggest.

2015-04-16 Thread info


On Wednesday, April 15, 2015 at 8:00:12 AM UTC+2, vikas gopal wrote:
>
> thank you for your quick response. I am totally new to this, any document 
> or website to understand nginx or any guide to configure nginx as a reverse 
> proxy on windows server 2012.
>
>
>
Have a look here http://nginx-win.ecsds.eu/ , plenty of docs and examples, 
all Windows orientated.
 

-- 
You received this message because you are subscribed to the Google Groups 
"elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to elasticsearch+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/032b91c5-567c-4923-993a-47d0a1d477b6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Please suggest.

2015-04-15 Thread Magnus Bäck
On Wednesday, April 15, 2015 at 08:00 CEST,
 vikas gopal  wrote:

> thank you for your quick response. I am totally new to this, any
> document or website to understand nginx or any guide to configure
> nginx as a reverse proxy on windows server 2012.

Have you had a look at the nginx documentation or any of the top hits
when you search for "nginx windows"? If they're not adequate for your
needs, perhaps you can phrase a more specific question.

Note that there's nothing special about nginx. IIS is capable of doing
what you want too.

-- 
Magnus Bäck| Software Engineer, Development Tools
magnus.b...@sonymobile.com | Sony Mobile Communications

-- 
You received this message because you are subscribed to the Google Groups 
"elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to elasticsearch+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/20150416060348.GB25217%40seldlx20533.corpusers.net.
For more options, visit https://groups.google.com/d/optout.


Re: Please suggest.

2015-04-14 Thread vikas gopal
thank you for your quick response. I am totally new to this, any document 
or website to understand nginx or any guide to configure nginx as a reverse 
proxy on windows server 2012.

On Wednesday, April 15, 2015 at 11:13:36 AM UTC+5:30, Yucong Sun wrote:
>
> Kibana is just a javascript web application (it stores some stuff in a 
> shard called .kibana in the ES cluster as the data) ,   so, to make it 
> HA, you just have to run a nginx with reverse proxy with any number of 
> kibana apps. just treat is a normal static website. 
>
> On Wed, Apr 15, 2015 at 1:31 PM, vikas gopal  > wrote: 
> > Sorry if I was not clear , I want 2 things 
> > 1) How I can make Kibana highly available , I mean I want same setup as 
> ES 
> > has if one down other will take over so my confusion is if I install 
> kibana 
> > on 2 servers and use one load balancer on top of these 2 instances how 2 
> > kibana instances will be in sync. 
> > Not sure if this is a valid solution .If you have any other approch or 
> > solution to achieve this please suggest. 
> > 
> > 2) I do not want to provide "http://localhost:5601"; or 
> > "http://ipaddress:5601"; to the user . I want to provide a fancy name 
> some 
> > thing like "http://security-dashboard:5601";. Now again how it's 
> possible 
> > with the multiple servers. 
> > 
> > On Wednesday, April 15, 2015 at 10:47:39 AM UTC+5:30, Mark Walkom wrote: 
> >> 
> >> And what do you want help on? 
> >> 
> >> On 15 April 2015 at 00:38, vikas gopal  wrote: 
> >>> 
> >>> Hi Experts, 
> >>> 
> >>> Need your valuable suggestion here . I have following setup and it is 
> >>> working fine. 
> >>> 
> >>> 1)  2-ES nodes (in Cluster handled by AWS load balancer) 
> >>> 
> >>> 2)  1-LS node (push data to any ES) 
> >>> 
> >>> 3)  1-Kibana Node (will get index from any of the ES ) 
> >>> 
> >>> 4)  One load balancer for ES instances. 
> >>> 
> >>> 
> >>> Now I want to extend it further . I want Kibana highly available like 
> I 
> >>> have setup for ES if one server is down then second will take over . 
> So by 
> >>> this, I mean I am planning to install kibana on 2 servers  to make it 
> highly 
> >>> available and want to use single address rather localhost:5601. So 
> that that 
> >>> common address I can provide to the user. 
> >>> 
> >>> 
> >>> -- 
> >>> You received this message because you are subscribed to the Google 
> Groups 
> >>> "elasticsearch" group. 
> >>> To unsubscribe from this group and stop receiving emails from it, send 
> an 
> >>> email to elasticsearc...@googlegroups.com. 
> >>> To view this discussion on the web visit 
> >>> 
> https://groups.google.com/d/msgid/elasticsearch/a7997db4-8e61-4c95-b059-b1723494090b%40googlegroups.com.
>  
>
> >>> For more options, visit https://groups.google.com/d/optout. 
> >> 
> >> 
> > -- 
> > You received this message because you are subscribed to the Google 
> Groups 
> > "elasticsearch" group. 
> > To unsubscribe from this group and stop receiving emails from it, send 
> an 
> > email to elasticsearc...@googlegroups.com . 
> > To view this discussion on the web visit 
> > 
> https://groups.google.com/d/msgid/elasticsearch/88b05749-d441-4f4d-a931-375ec8adb7bb%40googlegroups.com.
>  
>
> > 
> > For more options, visit https://groups.google.com/d/optout. 
>

-- 
You received this message because you are subscribed to the Google Groups 
"elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to elasticsearch+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/f13e347b-1488-4995-bff3-5bdb011e917c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Please suggest.

2015-04-14 Thread Yucong Sun
Kibana is just a javascript web application (it stores some stuff in a
shard called .kibana in the ES cluster as the data) ,   so, to make it
HA, you just have to run a nginx with reverse proxy with any number of
kibana apps. just treat is a normal static website.

On Wed, Apr 15, 2015 at 1:31 PM, vikas gopal  wrote:
> Sorry if I was not clear , I want 2 things
> 1) How I can make Kibana highly available , I mean I want same setup as ES
> has if one down other will take over so my confusion is if I install kibana
> on 2 servers and use one load balancer on top of these 2 instances how 2
> kibana instances will be in sync.
> Not sure if this is a valid solution .If you have any other approch or
> solution to achieve this please suggest.
>
> 2) I do not want to provide "http://localhost:5601"; or
> "http://ipaddress:5601"; to the user . I want to provide a fancy name some
> thing like "http://security-dashboard:5601";. Now again how it's possible
> with the multiple servers.
>
> On Wednesday, April 15, 2015 at 10:47:39 AM UTC+5:30, Mark Walkom wrote:
>>
>> And what do you want help on?
>>
>> On 15 April 2015 at 00:38, vikas gopal  wrote:
>>>
>>> Hi Experts,
>>>
>>> Need your valuable suggestion here . I have following setup and it is
>>> working fine.
>>>
>>> 1)  2-ES nodes (in Cluster handled by AWS load balancer)
>>>
>>> 2)  1-LS node (push data to any ES)
>>>
>>> 3)  1-Kibana Node (will get index from any of the ES )
>>>
>>> 4)  One load balancer for ES instances.
>>>
>>>
>>> Now I want to extend it further . I want Kibana highly available like I
>>> have setup for ES if one server is down then second will take over . So by
>>> this, I mean I am planning to install kibana on 2 servers  to make it highly
>>> available and want to use single address rather localhost:5601. So that that
>>> common address I can provide to the user.
>>>
>>>
>>> --
>>> You received this message because you are subscribed to the Google Groups
>>> "elasticsearch" group.
>>> To unsubscribe from this group and stop receiving emails from it, send an
>>> email to elasticsearc...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/elasticsearch/a7997db4-8e61-4c95-b059-b1723494090b%40googlegroups.com.
>>> For more options, visit https://groups.google.com/d/optout.
>>
>>
> --
> You received this message because you are subscribed to the Google Groups
> "elasticsearch" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to elasticsearch+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/elasticsearch/88b05749-d441-4f4d-a931-375ec8adb7bb%40googlegroups.com.
>
> For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to elasticsearch+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/CAJygYd3q0Lrwr5hPf5a8XAjmpoHNhaONmEzV5zFPCYkz7j8ZkQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Please suggest.

2015-04-14 Thread vikas gopal
Sorry if I was not clear , I want 2 things 
1) How I can make Kibana highly available , I mean I want same setup as ES 
has if one down other will take over so my confusion is if I install kibana 
on 2 servers and use one load balancer on top of these 2 instances how 2 
kibana instances will be in sync.
Not sure if this is a valid solution .If you have any other approch or 
solution to achieve this please suggest.

2) I do not want to provide "http://localhost:5601"; or 
"http://ipaddress:5601"; to the user . I want to provide a fancy name some 
thing like "http://security-dashboard:5601";. Now again how it's possible 
with the multiple servers.

On Wednesday, April 15, 2015 at 10:47:39 AM UTC+5:30, Mark Walkom wrote:
>
> And what do you want help on?
>
> On 15 April 2015 at 00:38, vikas gopal > 
> wrote:
>
>> Hi Experts,
>>
>> Need your valuable suggestion here . I have following setup and it is 
>> working fine.
>>
>> 1)  2-ES nodes (in Cluster handled by AWS load balancer)
>>
>> 2)  1-LS node (push data to any ES)
>>
>> 3)  1-Kibana Node (will get index from any of the ES )
>>
>> 4)  One load balancer for ES instances.
>>
>>
>> Now I want to extend it further . I want Kibana highly available like I 
>> have setup for ES if one server is down then second will take over . So by 
>> this, I mean I am planning to install kibana on 2 servers  to make it 
>> highly available and want to use single address rather localhost:5601. So 
>> that that common address I can provide to the user.
>>
>>
>>  -- 
>> You received this message because you are subscribed to the Google Groups 
>> "elasticsearch" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to elasticsearc...@googlegroups.com .
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/elasticsearch/a7997db4-8e61-4c95-b059-b1723494090b%40googlegroups.com
>>  
>> <https://groups.google.com/d/msgid/elasticsearch/a7997db4-8e61-4c95-b059-b1723494090b%40googlegroups.com?utm_medium=email&utm_source=footer>
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to elasticsearch+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/88b05749-d441-4f4d-a931-375ec8adb7bb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Please suggest.

2015-04-14 Thread Mark Walkom
And what do you want help on?

On 15 April 2015 at 00:38, vikas gopal  wrote:

> Hi Experts,
>
> Need your valuable suggestion here . I have following setup and it is
> working fine.
>
> 1)  2-ES nodes (in Cluster handled by AWS load balancer)
>
> 2)  1-LS node (push data to any ES)
>
> 3)  1-Kibana Node (will get index from any of the ES )
>
> 4)  One load balancer for ES instances.
>
>
> Now I want to extend it further . I want Kibana highly available like I
> have setup for ES if one server is down then second will take over . So by
> this, I mean I am planning to install kibana on 2 servers  to make it
> highly available and want to use single address rather localhost:5601. So
> that that common address I can provide to the user.
>
>
>  --
> You received this message because you are subscribed to the Google Groups
> "elasticsearch" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to elasticsearch+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/elasticsearch/a7997db4-8e61-4c95-b059-b1723494090b%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to elasticsearch+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/CAEYi1X9P3FSYH0u3VfjBvUUAh5KnNEecD6Jkx81JG-7z4%2Ba%2B9Q%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Please suggest.

2015-04-14 Thread vikas gopal
Hi Experts,

Need your valuable suggestion here . I have following setup and it is 
working fine.

1)  2-ES nodes (in Cluster handled by AWS load balancer)

2)  1-LS node (push data to any ES)

3)  1-Kibana Node (will get index from any of the ES )

4)  One load balancer for ES instances.


Now I want to extend it further . I want Kibana highly available like I 
have setup for ES if one server is down then second will take over . So by 
this, I mean I am planning to install kibana on 2 servers  to make it 
highly available and want to use single address rather localhost:5601. So 
that that common address I can provide to the user.


-- 
You received this message because you are subscribed to the Google Groups 
"elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to elasticsearch+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/a7997db4-8e61-4c95-b059-b1723494090b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.