To check INDEX,DATA, and Query Service Running

Hi Team,

Just want to know how we can determine that which services (data,query,Index) are running on which node in couchbase without logging to CB UI. I had access to Linux VM where the CB server is installed.

Thanks,
Debasis

You can try (the jq bit is optional of course):

curl -su Administrator:<password> http://localhost:8091/pools/default | jq .nodes[].services

Ref: https://docs.couchbase.com/server/current/rest-api/rest-node-get-info.html

HTH.