wohali opened a new issue #1155: Cannot access _dbs or _nodes databases through 
5984:/_node/<nodename>
URL: https://github.com/apache/couchdb/issues/1155
 
 
   We'd like to deprecate port 5986 in CouchDB 3.0. That means everything that 
we currently do with port 5986 must be possible through port 5984, or other 
administrative means.
   
   ## Expected Behaviour
   `curl http://localhost:5984/_node/_local/_dbs` should allow me access to the 
`_dbs` database.
   `curl http://localhost:5984/_node/_local/_nodes` should allow me access to 
the `_nodes` database.
   
   ## Current Behaviour
   With a `dev/run -n 1 --with-admin-party-please` node running in the 
background:
   
   ```
   $ curl localhost:15984/_node/_local/_dbs
   {"error":"not_found","reason":"missing"}
   $ curl localhost:15984/_node/_local/_nodes
   {"error":"not_found","reason":"missing"}
   $
   $ curl localhost:15984/_membership
   {"all_nodes":["[email protected]"],"cluster_nodes":["[email protected]"]}
   $ curl localhost:15984/_node/[email protected]/_dbs
   {"error":"not_found","reason":"missing"}
   $ curl localhost:15984/_node/[email protected]/_nodes
   {"error":"not_found","reason":"missing"}
   ```
   
   ## Context
   Prerequisite for deprecation of port 5986 (couch_httpd).
   
   ## Your Environment
   * Version used: master
   * Browser Name and version: curl

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to