Hi, thanks for the reply. The ports are opened and I’ve turned off the firewall. Port 8093 is opened too; however, when I ran the curl command with the argument stated the results came back different between server 1 and server 2 & 3.
For example: from server 1 I got:
super@server1~] curl -v http://super:super@server1:8093/query/service -d ‘statement=select 1’
Trying 192.168.10.11…
TCP_NODELAY set
Connected to server1 (192.168.10.11) port 8093 (# 0)
Server auth using Basic with user ‘super’
POST /query/service HTTP/1.1
Host: server1:8093
Content-Length: 18
Content-Type: application/x-www-form-urlencoded
upload completely sent off: 18 out of 18 bytes
HTTP/1.1 200 OK
Content-Length: 341
Content-Type: application/json; version=7.0.2-N1QL
{
“requestID”: “blah”
“signature”: {“$1”:“number”},
“results”: [
{“$1”:1}
],
“errors”: [{“code”:1080,“msg”:“Timeout 7us exceeded”,“retry”:true}],
“status”: “timeout”,
“metrics”: {“elapsedTime”: “404.662us”,“executionTime”: “352.996us”,“resultCount”:1,“resultSize”: 8, “serviceLoad”: 26,“errorCount”: 1}
}
- Connection # 0 to host server1 left intact
For Server2 I got:
super@server2~] curl -v http://super:super@server2:8093/query/service -d ‘statement=select 1’
Trying 192.168.10.12…
TCP_NODELAY set
Connected to server1 (192.168.10.12) port 8093 (# 0)
Server auth using Basic with user ‘super’
POST /query/service HTTP/1.1
Host: server2:8093
Content-Length: 18
Content-Type: application/x-www-form-urlencoded
upload completely sent off: 18 out of 18 bytes
HTTP/1.1 200 OK
Content-Length: 255
Content-Type: application/json; version=7.0.2-N1QL
{
“requestID”: “blah”
“signature”: {“$1”:“number”},
“results”: [
{“$1”:1}
],
“status”: “success”,
“metrics”: {“elapsedTime”: “428.226us”,“executionTime”: “354.809us”,“resultCount”:1,“resultSize”: 8, “serviceLoad”: 26}
}
- Connection # 0 to host server2 left intact
For Server3 I got:
super@server3~] curl -v http://super:super@server3:8093/query/service -d ‘statement=select 1’
Trying 192.168.10.13…
TCP_NODELAY set
Connected to server1 (192.168.10.13) port 8093 (# 0)
Server auth using Basic with user ‘super’
POST /query/service HTTP/1.1
Host: server3:8093
Content-Length: 18
Content-Type: application/x-www-form-urlencoded
upload completely sent off: 18 out of 18 bytes
HTTP/1.1 200 OK
Content-Length: 255
Content-Type: application/json; version=7.0.2-N1QL
{
“requestID”: “blah”
“signature”: {“$1”:“number”},
“results”: [
{“$1”:1}
],
“status”: “success”,
“metrics”: {“elapsedTime”: “427.806us”,“executionTime”: “370.964us”,“resultCount”:1,“resultSize”: 8, “serviceLoad”: 40}
}
- Connection # 0 to host server3 left intact
The query.log files look benign to me as I don’t see anything obvious …
Thanks again!