# Groovy unicast client cannot connect

**URL:** https://discuss.elastic.co/t/groovy-unicast-client-cannot-connect/8288
**Category:** Elasticsearch
**Created:** [July 2, 2012, 9:27pm UTC](https://discuss.elastic.co/t/groovy-unicast-client-cannot-connect/8288 "2012-07-02T21:27:51Z")
**Posts on this page:** 16
**Page:** 1

<div class="post-metadata">

### Author: ![Hal\_St\_Clair](https://avatars.discourse-cdn.com/v4/letter/h/3da27b/32.png) [@Hal\_St\_Clair](https://discuss.elastic.co/u/Hal_St_Clair)
#### Post date: [July 2, 2012, 9:27pm UTC](https://discuss.elastic.co/t/groovy-unicast-client-cannot-connect/8288/1 "2012-07-02T21:27:51Z")

</div>

I've set up a test environment with three clustered ElasticSearch servers  
and verified that the cluster reports that it is healthy. I'm now trying  
to connect to the cluster with a simple test client but I've been  
unsuccessful so far.

my servers are at 172.40.6.100, 172.40.6.101, 172.40.6.102 (see attached  
cluster.state-pretty.txt for cluster status at the time of the test

the groovy settings closure is:

```
    nodeBuilder.settings {
        node {
            client = true // signifies that this 

```

node is a client  
}

```
        cluster {
            name = 'dlbnaes'
        }

        discovery {
            zen {
                ping {
                    multicast {
                        enabled = false
                    }
                    unicast {
                        hosts = [ "172.40.6.100:9200", 

```

"172.40.6.101:9200", "172.40.6.102:9200" ]  
}  
}  
}  
}  
}

the log for the master is node is attached and shows the last attempted  
connection at [2012-07-02 11:18:34,722] reporting "invalid version format"

The client and all three server nodes are running ElasticSearch version  
0.19.7

Please let me know if there is something I'm doing wrong here

Best,

Hal

---

<div class="post-metadata">

### Author: ![drewr](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/drewr/32/7803_2.png) [@drewr](https://discuss.elastic.co/u/drewr)
#### Post date: [July 2, 2012, 9:44pm UTC](https://discuss.elastic.co/t/groovy-unicast-client-cannot-connect/8288/2 "2012-07-02T21:44:34Z")

</div>

Hal St. Clair wrote:

> I've set up a test environment with three clustered Elasticsearch  
> servers and verified that the cluster reports that it is healthy.  
> I'm now trying to connect to the cluster with a simple test client  
> but I've been unsuccessful so far.

[...]

> ```
> unicast {
> hosts = [ "172.40.6.100:9200", 
> 
> ```
> 
> "172.40.6.101:9200", "172.40.6.102:9200" ]  
> }

[...]

> the log for the master is node is attached and shows the last attempted  
> connection at [2012-07-02 11:18:34,722] reporting "invalid version format"

You want port 9300 or whatever ES reported as the bound\_address in  
the transport logging. The reason you see "invalid version" is the  
internal wire protocol that nodes use to communicate is trying to  
talk to the HTTP interface on port 9200.

-Drew

---

<div class="post-metadata">

### Author: ![Hal\_St\_Clair](https://avatars.discourse-cdn.com/v4/letter/h/3da27b/32.png) [@Hal\_St\_Clair](https://discuss.elastic.co/u/Hal_St_Clair)
#### Post date: [July 2, 2012, 10:37pm UTC](https://discuss.elastic.co/t/groovy-unicast-client-cannot-connect/8288/3 "2012-07-02T22:37:31Z")

</div>

Thanks for the guidance on this. I've since run the test with all hosts  
specifying port 9300 (and again with no port specified at all) but now I  
see nothing in the server log and my client still fails with

Exception in thread "main"  
org.elasticsearch.cluster.block.ClusterBlockException: blocked by:  
[SERVICE\_UNAVAILABLE/1/state not recovered /  
initialized];[SERVICE\_UNAVAILABLE/2/no master];

On Monday, July 2, 2012 4:27:51 PM UTC-5, Hal St. Clair wrote:

> I've set up a test environment with three clustered Elasticsearch servers  
> and verified that the cluster reports that it is healthy. I'm now trying  
> to connect to the cluster with a simple test client but I've been  
> unsuccessful so far.
> 
> my servers are at 172.40.6.100, 172.40.6.101, 172.40.6.102 (see attached  
> cluster.state-pretty.txt for cluster status at the time of the test
> 
> the groovy settings closure is:
> 
> ```
> nodeBuilder.settings {
> node {
> client = true // signifies that this 
> 
> ```
> 
> node is a client  
> }
> 
> ```
> cluster {
> name = 'dlbnaes'
> }
> 
> discovery {
> zen {
> ping {
> multicast {
> enabled = false
> }
> unicast {
> hosts = [ "172.40.6.100:9200", "
> 
> ```
> 
> 172.40.6.101:9200", "172.40.6.102:9200" ]  
> }  
> }  
> }  
> }  
> }
> 
> the log for the master is node is attached and shows the last attempted  
> connection at [2012-07-02 11:18:34,722] reporting "invalid version format"
> 
> The client and all three server nodes are running Elasticsearch version  
> 0.19.7
> 
> Please let me know if there is something I'm doing wrong here
> 
> Best,
> 
> Hal

---

<div class="post-metadata">

### Author: ![drewr](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/drewr/32/7803_2.png) [@drewr](https://discuss.elastic.co/u/drewr)
#### Post date: [July 3, 2012, 4:28am UTC](https://discuss.elastic.co/t/groovy-unicast-client-cannot-connect/8288/4 "2012-07-03T04:28:38Z")

</div>

Hal St. Clair wrote:

> Thanks for the guidance on this. I've since run the test with all  
> hosts specifying port 9300 (and again with no port specified at  
> all) but now I see nothing in the server log and my client still  
> fails with
> 
> Exception in thread "main"  
> org.elasticsearch.cluster.block.ClusterBlockException: blocked by:  
> [SERVICE\_UNAVAILABLE/1/state not recovered /  
> initialized];[SERVICE\_UNAVAILABLE/2/no master];

This just means the client cannot connect to one of the data nodes,  
not even enough to get a protocol error.

Does the client node have the appropriate access to the data nodes'  
port 9300 through firewalls or other obstacles? Also, what's the  
output of `curl -s localhost:9200/\_cluster/health?pretty=1' on one  
of the three data nodes?

-Drew

---

<div class="post-metadata">

### Author: ![Hal\_St\_Clair](https://avatars.discourse-cdn.com/v4/letter/h/3da27b/32.png) [@Hal\_St\_Clair](https://discuss.elastic.co/u/Hal_St_Clair)
#### Post date: [July 3, 2012, 1:12pm UTC](https://discuss.elastic.co/t/groovy-unicast-client-cannot-connect/8288/5 "2012-07-03T13:12:50Z")

</div>

I had to open 9200 and 9300 in iptables to get these servers started. I  
didn't bother with IP filtering since these are internal test servers. I'm  
hitting them from an Ubuntu desktop, which I'm pretty sure has no active  
firewall by default.

I've attached a copy of cluster health. Everything looks healthy to me.

On Monday, July 2, 2012 11:28:38 PM UTC-5, Drew Raines wrote:

> Hal St. Clair wrote:
> 
> > Thanks for the guidance on this. I've since run the test with all  
> > hosts specifying port 9300 (and again with no port specified at  
> > all) but now I see nothing in the server log and my client still  
> > fails with
> > 
> > Exception in thread "main"  
> > org.elasticsearch.cluster.block.ClusterBlockException: blocked by:  
> > [SERVICE\_UNAVAILABLE/1/state not recovered /  
> > initialized];[SERVICE\_UNAVAILABLE/2/no master];
> 
> This just means the client cannot connect to one of the data nodes,  
> not even enough to get a protocol error.
> 
> Does the client node have the appropriate access to the data nodes'  
> port 9300 through firewalls or other obstacles? Also, what's the  
> output of `curl -s localhost:9200/\_cluster/health?pretty=1' on one  
> of the three data nodes?
> 
> -Drew

---

<div class="post-metadata">

### Author: ![drewr](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/drewr/32/7803_2.png) [@drewr](https://discuss.elastic.co/u/drewr)
#### Post date: [July 3, 2012, 2:26pm UTC](https://discuss.elastic.co/t/groovy-unicast-client-cannot-connect/8288/6 "2012-07-03T14:26:42Z")

</div>

Hal St. Clair wrote:

> I had to open 9200 and 9300 in iptables to get these servers  
> started. I didn't bother with IP filtering since these are  
> internal test servers. I'm hitting them from an Ubuntu desktop,  
> which I'm pretty sure has no active firewall by default.

From the node running the client, can you ping any of the data nodes?  
The point is that the node client has to be able to hit one of the  
data nodes, which it is not doing (and why you see errors about no  
master).

> I've attached a copy of cluster health. Everything looks healthy  
> to me.

OK. That was just to make sure your cluster name agreed.

-Drew

---

<div class="post-metadata">

### Author: ![Hal\_St\_Clair](https://avatars.discourse-cdn.com/v4/letter/h/3da27b/32.png) [@Hal\_St\_Clair](https://discuss.elastic.co/u/Hal_St_Clair)
#### Post date: [July 3, 2012, 3:21pm UTC](https://discuss.elastic.co/t/groovy-unicast-client-cannot-connect/8288/7 "2012-07-03T15:21:01Z")

</div>

I'm able to access the http interface without a problem. More puzzling, I  
just ran a wireshark trace on the communications between the client and  
server and I can see packets going back and forth between the client and  
all three hosts right up until the client reports that it is unable to  
connect. Unfortunately, I can make neither heads nor tails of the trace.  
It appears that it is simply trying to connect over and over again and as  
near as I can tell the response looks valid.

Incidentally, I also tried to connect to only one of the hosts but had no  
success with that either.

On Tuesday, July 3, 2012 9:26:42 AM UTC-5, Drew Raines wrote:

> Hal St. Clair wrote:
> 
> > I had to open 9200 and 9300 in iptables to get these servers  
> > started. I didn't bother with IP filtering since these are  
> > internal test servers. I'm hitting them from an Ubuntu desktop,  
> > which I'm pretty sure has no active firewall by default.
> 
> From the node running the client, can you ping any of the data nodes?  
> The point is that the node client has to be able to hit one of the  
> data nodes, which it is not doing (and why you see errors about no  
> master).
> 
> > I've attached a copy of cluster health. Everything looks healthy  
> > to me.
> 
> OK. That was just to make sure your cluster name agreed.
> 
> -Drew

---

<div class="post-metadata">

### Author: ![drewr](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/drewr/32/7803_2.png) [@drewr](https://discuss.elastic.co/u/drewr)
#### Post date: [July 3, 2012, 4:16pm UTC](https://discuss.elastic.co/t/groovy-unicast-client-cannot-connect/8288/8 "2012-07-03T16:16:32Z")

</div>

Hal St. Clair wrote:

> I'm able to access the http interface without a problem.

The node client doesn't talk to the HTTP interface. You need to make  
sure 9300 is accessible. How about:

```
telnet 172.40.6.100 9300

```

Does that at least connect?

If it does, start the master node with logging.yml rootLogger set to  
TRACE and watch the log as you try to connect with the node client.

-Drew

---

<div class="post-metadata">

### Author: ![Hal\_St\_Clair](https://avatars.discourse-cdn.com/v4/letter/h/3da27b/32.png) [@Hal\_St\_Clair](https://discuss.elastic.co/u/Hal_St_Clair)
#### Post date: [July 3, 2012, 6:04pm UTC](https://discuss.elastic.co/t/groovy-unicast-client-cannot-connect/8288/9 "2012-07-03T18:04:35Z")

</div>

I probably should have been more specific about the wire trace. I can see  
the traffic between the two on 9300. In any event, telnet to port 9300  
connects successfully

When I shut down all but one of the nodes and enable trace level logging on  
the the remaining node, the log (attached) shows the following repeated  
over and over:

[2012-07-02 05:55:30,921][TRACE][transport.netty] [“dlbnaes01”]  
channel opened: [id: 0x2e686cea, /172.40.4.33:48947 =\> /172.40.6.100:9300]  
[2012-07-02 05:55:31,280][DEBUG][river.mongodb] [“dlbnaes01”]  
[mongodb][mongodb] oasis\_rest.target last timestamp: { "$ts" : 1341330603 ,  
"$inc" : 1}  
[2012-07-02 05:55:31,280][DEBUG][river.mongodb] [“dlbnaes01”]  
[mongodb][mongodb] Using filter: { "ts" : { "$gt" : { "$ts" : 1341330603 ,  
"$inc" : 1}} , "ns" : { "$regex" : "oasis\_rest.target" , "$options" : ""}}  
[2012-07-02 05:55:31,873][DEBUG][river.mongodb] [“dlbnaes01”]  
[mongodb][mongodb] oasis\_rest.target last timestamp: { "$ts" : 1341330603 ,  
"$inc" : 1}  
[2012-07-02 05:55:31,873][DEBUG][river.mongodb] [“dlbnaes01”]  
[mongodb][mongodb] Using filter: { "ts" : { "$gt" : { "$ts" : 1341330603 ,  
"$inc" : 1}} , "ns" : { "$regex" : "oasis\_rest.target" , "$options" : ""}}  
[2012-07-02 05:55:32,465][DEBUG][river.mongodb] [“dlbnaes01”]  
[mongodb][mongodb] oasis\_rest.target last timestamp: { "$ts" : 1341330603 ,  
"$inc" : 1}  
[2012-07-02 05:55:32,465][DEBUG][river.mongodb] [“dlbnaes01”]  
[mongodb][mongodb] Using filter: { "ts" : { "$gt" : { "$ts" : 1341330603 ,  
"$inc" : 1}} , "ns" : { "$regex" : "oasis\_rest.target" , "$options" : ""}}  
[2012-07-02 05:55:33,059][DEBUG][river.mongodb] [“dlbnaes01”]  
[mongodb][mongodb] oasis\_rest.target last timestamp: { "$ts" : 1341330603 ,  
"$inc" : 1}  
[2012-07-02 05:55:33,060][DEBUG][river.mongodb] [“dlbnaes01”]  
[mongodb][mongodb] Using filter: { "ts" : { "$gt" : { "$ts" : 1341330603 ,  
"$inc" : 1}} , "ns" : { "$regex" : "oasis\_rest.target" , "$options" : ""}}  
[2012-07-02 05:55:33,654][DEBUG][river.mongodb] [“dlbnaes01”]  
[mongodb][mongodb] oasis\_rest.target last timestamp: { "$ts" : 1341330603 ,  
"$inc" : 1}  
[2012-07-02 05:55:33,654][DEBUG][river.mongodb] [“dlbnaes01”]  
[mongodb][mongodb] Using filter: { "ts" : { "$gt" : { "$ts" : 1341330603 ,  
"$inc" : 1}} , "ns" : { "$regex" : "oasis\_rest.target" , "$options" : ""}}  
[2012-07-02 05:55:33,924][TRACE][transport.netty] [“dlbnaes01”]  
channel closed: [id: 0x2e686cea, /172.40.4.33:48947 :\> /172.40.6.100:9300]

for completeness, I removed the mongodb river that I have set up for  
testing and re-ran my test but the results are unchanged (apart from the  
disappearance of the mongodb lins in the log)

Best,

Hal

On Tuesday, July 3, 2012 11:16:32 AM UTC-5, Drew Raines wrote:

> Hal St. Clair wrote:
> 
> > I'm able to access the http interface without a problem.
> 
> The node client doesn't talk to the HTTP interface. You need to make  
> sure 9300 is accessible. How about:
> 
> ```
> telnet 172.40.6.100 9300 
> 
> ```
> 
> Does that at least connect?
> 
> If it does, start the master node with logging.yml rootLogger set to  
> TRACE and watch the log as you try to connect with the node client.
> 
> -Drew

---

<div class="post-metadata">

### Author: ![drewr](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/drewr/32/7803_2.png) [@drewr](https://discuss.elastic.co/u/drewr)
#### Post date: [July 3, 2012, 7:24pm UTC](https://discuss.elastic.co/t/groovy-unicast-client-cannot-connect/8288/10 "2012-07-03T19:24:08Z")

</div>

Hal St. Clair wrote:

> I probably should have been more specific about the wire trace. I can see  
> the traffic between the two on 9300. In any event, telnet to port 9300  
> connects successfully

OK.

> [2012-07-02 05:55:30,921][TRACE][transport.netty] [“dlbnaes01”]  
> channel opened: [id: 0x2e686cea, /172.40.4.33:48947 =\> /172.40.6.100:9300]

I'm guessing 172.40.4.33 is the Groovy client. Can you paste more of  
the relevant Groovy code somewhere? Maybe there's something subtle  
you're missing.

The rest of the settings look ok (although the pretty quotes in the  
node names are a little distracting :-)).

-Drew

---

<div class="post-metadata">

### Author: ![Hal\_St\_Clair](https://avatars.discourse-cdn.com/v4/letter/h/3da27b/32.png) [@Hal\_St\_Clair](https://discuss.elastic.co/u/Hal_St_Clair)
#### Post date: [July 3, 2012, 8:05pm UTC](https://discuss.elastic.co/t/groovy-unicast-client-cannot-connect/8288/11 "2012-07-03T20:05:33Z")

</div>

That's right 172.40.4.33 is the Ubuntu client. I've attached the code so  
you can see it. The application returns from buildElasticSearchNode()  
after about thirty seconds but the rest of the code doesn't do much since  
the node was never really able to connect to the cluster. The exception is  
thrown on line 64.

The code is a little messy since I'm still trying to get it to work 😉

On Tuesday, July 3, 2012 2:24:08 PM UTC-5, Drew Raines wrote:

> Hal St. Clair wrote:
> 
> > I probably should have been more specific about the wire trace. I can  
> > see  
> > the traffic between the two on 9300. In any event, telnet to port 9300  
> > connects successfully
> 
> OK.
> 
> > [2012-07-02 05:55:30,921][TRACE][transport.netty]  
> > [“dlbnaes01”]  
> > channel opened: [id: 0x2e686cea, /172.40.4.33:48947 =\> /  
> > 172.40.6.100:9300]
> 
> I'm guessing 172.40.4.33 is the Groovy client. Can you paste more of  
> the relevant Groovy code somewhere? Maybe there's something subtle  
> you're missing.
> 
> The rest of the settings look ok (although the pretty quotes in the  
> node names are a little distracting :-)).
> 
> -Drew

---

<div class="post-metadata">

### Author: ![drewr](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/drewr/32/7803_2.png) [@drewr](https://discuss.elastic.co/u/drewr)
#### Post date: [July 3, 2012, 8:38pm UTC](https://discuss.elastic.co/t/groovy-unicast-client-cannot-connect/8288/12 "2012-07-03T20:38:54Z")

</div>

Hal St. Clair wrote:

> That's right 172.40.4.33 is the Ubuntu client. I've attached the  
> code so you can see it. The application returns from  
> buildElasticSearchNode() after about thirty seconds but the rest of  
> the code doesn't do much since the node was never really able to  
> connect to the cluster. The exception is thrown on line 64.

I'm not sure what's going on. It has some kind of communication with  
the data node but then no discovery or other activity occurs.

What version of the Groovy client are you using? Data nodes are  
0.19.7 right?

-Drew

---

<div class="post-metadata">

### Author: ![Hal\_St\_Clair](https://avatars.discourse-cdn.com/v4/letter/h/3da27b/32.png) [@Hal\_St\_Clair](https://discuss.elastic.co/u/Hal_St_Clair)
#### Post date: [July 3, 2012, 10:24pm UTC](https://discuss.elastic.co/t/groovy-unicast-client-cannot-connect/8288/13 "2012-07-03T22:24:48Z")

</div>

Data nodes and client are all 0.19.7

Good to know that it isn't something dead obvious, I guess 😛

On Tuesday, July 3, 2012 3:38:54 PM UTC-5, Drew Raines wrote:

> Hal St. Clair wrote:
> 
> > That's right 172.40.4.33 is the Ubuntu client. I've attached the  
> > code so you can see it. The application returns from  
> > buildElasticSearchNode() after about thirty seconds but the rest of  
> > the code doesn't do much since the node was never really able to  
> > connect to the cluster. The exception is thrown on line 64.
> 
> I'm not sure what's going on. It has some kind of communication with  
> the data node but then no discovery or other activity occurs.
> 
> What version of the Groovy client are you using? Data nodes are  
> 0.19.7 right?
> 
> -Drew

---

<div class="post-metadata">

### Author: ![Hal\_St\_Clair](https://avatars.discourse-cdn.com/v4/letter/h/3da27b/32.png) [@Hal\_St\_Clair](https://discuss.elastic.co/u/Hal_St_Clair)
#### Post date: [July 9, 2012, 5:38pm UTC](https://discuss.elastic.co/t/groovy-unicast-client-cannot-connect/8288/14 "2012-07-09T17:38:00Z")

</div>

For the sake of completeness, I've just upgraded to 19.8 and retested with  
the same results.

Has anyone out there done this? Our target environment prohibits multicast  
(even though we would firewall it within a private network segment) so I  
need to either get this unicast thing working or I have to pull the plug on  
my current work with Elasticsearch. I really don't want to abandon it over  
this issue.

On Tuesday, July 3, 2012 5:24:48 PM UTC-5, Hal St. Clair wrote:

> Data nodes and client are all 0.19.7
> 
> Good to know that it isn't something dead obvious, I guess 😛
> 
> On Tuesday, July 3, 2012 3:38:54 PM UTC-5, Drew Raines wrote:
> 
> > Hal St. Clair wrote:
> > 
> > > That's right 172.40.4.33 is the Ubuntu client. I've attached the  
> > > code so you can see it. The application returns from  
> > > buildElasticSearchNode() after about thirty seconds but the rest of  
> > > the code doesn't do much since the node was never really able to  
> > > connect to the cluster. The exception is thrown on line 64.
> > 
> > I'm not sure what's going on. It has some kind of communication with  
> > the data node but then no discovery or other activity occurs.
> > 
> > What version of the Groovy client are you using? Data nodes are  
> > 0.19.7 right?
> > 
> > -Drew

---

<div class="post-metadata">

### Author: ![Igor\_Motov](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/igor_motov/32/45193_2.png) [@Igor\_Motov](https://discuss.elastic.co/u/Igor_Motov)
#### Post date: [July 10, 2012, 1:13am UTC](https://discuss.elastic.co/t/groovy-unicast-client-cannot-connect/8288/15 "2012-07-10T01:13:28Z")

</div>

OK, this is tricky one. Basically, when used in static scope "name" in the  
following closure points to the class name and doesn't affect your settings

```
        cluster {
            name = 'dlbnaes'
        }

```

As a result, you are creating a client node in the "elasticsearch" cluster  
and such node cannot connect to nodes in the "dlbnaes" cluster. Moving this  
closure out of static scope or adding cluster name to settings using put  
method fixes the issue for me:

```
    nodeBuilder.settings.put("cluster.name", "dlbnaes")

```

On Monday, July 9, 2012 1:38:00 PM UTC-4, Hal St. Clair wrote:

> For the sake of completeness, I've just upgraded to 19.8 and retested with  
> the same results.
> 
> Has anyone out there done this? Our target environment prohibits  
> multicast (even though we would firewall it within a private network  
> segment) so I need to either get this unicast thing working or I have to  
> pull the plug on my current work with Elasticsearch. I really don't want  
> to abandon it over this issue.
> 
> On Tuesday, July 3, 2012 5:24:48 PM UTC-5, Hal St. Clair wrote:
> 
> > Data nodes and client are all 0.19.7
> > 
> > Good to know that it isn't something dead obvious, I guess 😛
> > 
> > On Tuesday, July 3, 2012 3:38:54 PM UTC-5, Drew Raines wrote:
> > 
> > > Hal St. Clair wrote:
> > > 
> > > > That's right 172.40.4.33 is the Ubuntu client. I've attached the  
> > > > code so you can see it. The application returns from  
> > > > buildElasticSearchNode() after about thirty seconds but the rest of  
> > > > the code doesn't do much since the node was never really able to  
> > > > connect to the cluster. The exception is thrown on line 64.
> > > 
> > > I'm not sure what's going on. It has some kind of communication with  
> > > the data node but then no discovery or other activity occurs.
> > > 
> > > What version of the Groovy client are you using? Data nodes are  
> > > 0.19.7 right?
> > > 
> > > -Drew

---

<div class="post-metadata">

### Author: ![system](https://us1.discourse-cdn.com/elastic/original/3X/1/a/1ac57faf039f6b580b3f104ef42a2a89e41014de.png) [@system](https://discuss.elastic.co/u/system)
#### Post date: [July 6, 2017, 3:20am UTC](https://discuss.elastic.co/t/groovy-unicast-client-cannot-connect/8288/16 "2017-07-06T03:20:50Z")

</div>


