Couchbase ELK connector firewall ports

hello dear all,
i want to separate the couchbase connector from within the same machine as couchbase db to a separate server.
there is a cluster of firewall in between. i wonder if you can please lead me with this regard:
1- which ports should be open from connector to couchbase db?
2- which ports should be open from couchbase db to the connector?

thank you very much

Hi Ehsan,

1- which ports should be open from connector to couchbase db?

For unsecured connections, the memcached_port (11210) and the rest_port (8091).

For secured connections, the memcached_ssl_port (11207) and the ssl_rest_port (18091).

If you don’t want to open the REST port, you can tell the connector to bootstrap using the KV service instead. Here’s what that would look like:

hosts = ['example.com:11210=kv']

2- which ports should be open from couchbase db to the connector?

Couchbase Server does not initiate any TCP connections to the connector.

Thanks,
David

hello dear david,
love you!