adminMongo connection screen

0

I installed adminMongo.

Follow the installation instructions :

  
  • Navigate to folder & install adminMongo: git clone link & cd adminMongo
  •   
  • Install dependencies: npm install
  •   
  • Start application: npm start or node app
  •   
  • Visit link in your browser
  •   

    To get to the login page of step (4) and from there I could not pass.

    I need to fill in the "Connection string" field, but I do not know what to set there.

    EDIT: I'm referring to this string here:

    mongodb://<user>:<password>@127.0.0.1:<port>/<db>
    

    Can anyone explain me? Thanks!

        
    asked by anonymous 03.08.2018 / 12:22

    1 answer

    1

    The connection is very descriptive about what you need to contain. This is the authentication data for your bank ( MongoDB ) which you will link to AdminMongo . p>

    Assuming that you have the MongoDB configured on your machine, the data is:

    • <user> = user
    • <password> = password
    • 127.0.0.1 = server address for connection ( in your case is location: 127.0.0.1 )
    • <port> = port ( optional, default port is 27017 )
    • <db> = bank ( this is optional, default bank is admin )

    In the doc you have the detailed string description of connection.

        
    03.08.2018 / 19:57