Server at 10.70.152.26:27017 reports maximum wire version 4, but this version of the Node.js Driver requires at least 6 (MongoDB 3.6)

Viewed 7175

i have issues when i connect mongodb with url, please help

Server at 10.70.152.26:27017 reports maximum wire version 4, but this version of the Node.js Driver requires at leastenter image description here 6 (MongoDB 3.6)

2 Answers

Try to download an older version of Mongodb compass. like 1.28.4 here is the link to it Mongo 1.28.4.

and Try checking your admin username and see if you have the correct access or not. hope this helps

You are using a server which only support protocol version 4 and a client which requires at least protocol version 6. You need to either use a driver which supports protocol version 4 or a server which supports protocol version 6.

Related