Andrew
Andrew

Reputation: 3

Remote Mongo DB connection through shell scripts

I have to establish connection to Remote mongo database through shell script and execute a js file with mongo queries Please help me with the commands..

Upvotes: 0

Views: 604

Answers (1)

R2D2
R2D2

Reputation: 10737

In general:

 mongo mongodb://user:<pass>@<ip>:27017/test&authSource=admin myjsfile.js

Upvotes: 1

Related Questions