MongoDB on the native driver port

2
  

You are trying to access MongoDB on the native driver port. For http diagnostic access, add 1000 to the port number

This is the message I get when I try to access link after having mongo running.

What do you mean by the following sentence?

  

... For http diagnostic access, add 1000 to the port number

I have my application for port 3000, and without any problem, I want to know is what this message means.

    
asked by Theia 26.06.2017 в 20:42
source

1 answer

2

I do not use Mongo , but the message is telling you, more or less, that you're trying to connect via HTTP to the used port of connection for the native protocol (which apparently is not HTTP ).

  

... For http diagnostic access, add 1000 to the port number

Tells you that for Mongo debugging purposes, you connect to HTTP port 1000 + which you are using , that is, to connect to

  

link

All the above is always referring to Mongo ; It has nothing to do with your application.

    
answered by 26.06.2017 / 20:55
source