Can't connect to the database with mongooseHow to resolve Mongoose Connect UNKNOWN?Authentication in mongoose using SCRAM-SHA-1Mongoose with Authentication causes timeoutMongoose never connects to mongodbConnection TImeout for mongodb using mongooseMongoose with ReplicaSet on AtlasHow to connect to mongoDB Atlas using mongooseMongoose connect throwing a warningmongoose connection error alwaysMongoose connection authentication failed

Blender - show edges angles “direction”

I2C signal and power over long range (10meter cable)

Could solar power be utilized and substitute coal in the 19th century?

"lassen" in meaning "sich fassen"

My boss asked me to take a one-day class, then signs it up as a day off

Meta programming: Declare a new struct on the fly

How can a jailer prevent the Forge Cleric's Artisan's Blessing from being used?

What is the term when two people sing in harmony, but they aren't singing the same notes?

Teaching indefinite integrals that require special-casing

A known event to a history junkie

For airliners, what prevents wing strikes on landing in bad weather?

Why isn't KTEX's runway designation 10/28 instead of 9/27?

What to do when my ideas aren't chosen, when I strongly disagree with the chosen solution?

Is exact Kanji stroke length important?

Identify a stage play about a VR experience in which participants are encouraged to simulate performing horrific activities

Visiting the UK as unmarried couple

Can somebody explain Brexit in a few child-proof sentences?

Freedom of speech and where it applies

Have I saved too much for retirement so far?

Science Fiction story where a man invents a machine that can help him watch history unfold

Can I use my Chinese passport to enter China after I acquired another citizenship?

Are Warlocks Arcane or Divine?

node command while defining a coordinate in TikZ

Why does this part of the Space Shuttle launch pad seem to be floating in air?



Can't connect to the database with mongoose


How to resolve Mongoose Connect UNKNOWN?Authentication in mongoose using SCRAM-SHA-1Mongoose with Authentication causes timeoutMongoose never connects to mongodbConnection TImeout for mongodb using mongooseMongoose with ReplicaSet on AtlasHow to connect to mongoDB Atlas using mongooseMongoose connect throwing a warningmongoose connection error alwaysMongoose connection authentication failed













2















I'm having issues when I try to connect to mongodb with mongoose. I created an admin/admin user, but when I try to change it, it doesn't work.
I'm using mongoose 5.0.6 and mongo 4.0.5



This is my mongo user :



> db.getUsers()
[

"_id" : "mydb.admin",
"user" : "admin",
"db" : "mydb",
"roles" : [

"role" : "userAdminAnyDatabase",
"db" : "admin"

],
"mechanisms" : [
"SCRAM-SHA-1",
"SCRAM-SHA-256"
]
]


And this is how I connect to mongoose :



 let options = 
user: 'admin',
pass: "admin",
useNewUrlParser: true,


mongoose.connect(`mongodb://$dbConfig.host:$dbConfig.port/$dbConfig.dbConfig.database`, options);


This works.



Now when I try to change the password :



 db.updateUser("admin", pwd: "admin2" ) 


I got the following error :



MongoError: Authentication failed.


So I tried to log in directly with mongo command (note the authentication database):



mongo --username admin --password --authenticationDatabase mydb --host XXX --port 27017


I can authenticate properly, but not with mongoose. So I try to add the authSource parameter



 let options = 
user: 'admin',
pass: "admin2",
useNewUrlParser: true,


mongoose.connect(`mongodb://$dbConfig.dbConfig.host:$dbConfig.dbConfig.port/$dbConfig.dbConfig.database?authSource=$dbConfig.dbConfig.database`, options);


I have an authentication error. This is my connection code :



var db = mongoose.connection;
db.on('error', console.error.bind(console, 'connection error:'));

db.on('connected', () =>
server.listen(
port,
function()
console.log(`Listen on port $port`);
console.log(`Environnement is $process.env.NODE_ENV`);
console.log(`database connected $dbConfig.dbConfig.host $dbConfig.dbConfig.database`)
);

);


There is also a wierd behaviour according to the following scenarios : (after changing the password)



  • Wrong credentials (admin/admin) + no authSource => throw an Error event (authentication failed)

  • Wrong credentials (admin/admin) + authSource => throw an Error event (authentication failed)

  • Correct credentials + authSource => goes to 'connected event' but display a Authentication failed error

  • Correct credentials + no authSource => same as above

So whenever I change the credentials it throw an Error, but I am able to authenticate to the database with mongoshell.



Finally, if I change back the credentials to "admin/admin" it works perfectly.



TLDR :



  • Try to change my mongo's user password to admin2

  • Works with mongoshell but not with the app

  • Looks like it only works with admin as password and no authSource









share|improve this question


























    2















    I'm having issues when I try to connect to mongodb with mongoose. I created an admin/admin user, but when I try to change it, it doesn't work.
    I'm using mongoose 5.0.6 and mongo 4.0.5



    This is my mongo user :



    > db.getUsers()
    [

    "_id" : "mydb.admin",
    "user" : "admin",
    "db" : "mydb",
    "roles" : [

    "role" : "userAdminAnyDatabase",
    "db" : "admin"

    ],
    "mechanisms" : [
    "SCRAM-SHA-1",
    "SCRAM-SHA-256"
    ]
    ]


    And this is how I connect to mongoose :



     let options = 
    user: 'admin',
    pass: "admin",
    useNewUrlParser: true,


    mongoose.connect(`mongodb://$dbConfig.host:$dbConfig.port/$dbConfig.dbConfig.database`, options);


    This works.



    Now when I try to change the password :



     db.updateUser("admin", pwd: "admin2" ) 


    I got the following error :



    MongoError: Authentication failed.


    So I tried to log in directly with mongo command (note the authentication database):



    mongo --username admin --password --authenticationDatabase mydb --host XXX --port 27017


    I can authenticate properly, but not with mongoose. So I try to add the authSource parameter



     let options = 
    user: 'admin',
    pass: "admin2",
    useNewUrlParser: true,


    mongoose.connect(`mongodb://$dbConfig.dbConfig.host:$dbConfig.dbConfig.port/$dbConfig.dbConfig.database?authSource=$dbConfig.dbConfig.database`, options);


    I have an authentication error. This is my connection code :



    var db = mongoose.connection;
    db.on('error', console.error.bind(console, 'connection error:'));

    db.on('connected', () =>
    server.listen(
    port,
    function()
    console.log(`Listen on port $port`);
    console.log(`Environnement is $process.env.NODE_ENV`);
    console.log(`database connected $dbConfig.dbConfig.host $dbConfig.dbConfig.database`)
    );

    );


    There is also a wierd behaviour according to the following scenarios : (after changing the password)



    • Wrong credentials (admin/admin) + no authSource => throw an Error event (authentication failed)

    • Wrong credentials (admin/admin) + authSource => throw an Error event (authentication failed)

    • Correct credentials + authSource => goes to 'connected event' but display a Authentication failed error

    • Correct credentials + no authSource => same as above

    So whenever I change the credentials it throw an Error, but I am able to authenticate to the database with mongoshell.



    Finally, if I change back the credentials to "admin/admin" it works perfectly.



    TLDR :



    • Try to change my mongo's user password to admin2

    • Works with mongoshell but not with the app

    • Looks like it only works with admin as password and no authSource









    share|improve this question
























      2












      2








      2








      I'm having issues when I try to connect to mongodb with mongoose. I created an admin/admin user, but when I try to change it, it doesn't work.
      I'm using mongoose 5.0.6 and mongo 4.0.5



      This is my mongo user :



      > db.getUsers()
      [

      "_id" : "mydb.admin",
      "user" : "admin",
      "db" : "mydb",
      "roles" : [

      "role" : "userAdminAnyDatabase",
      "db" : "admin"

      ],
      "mechanisms" : [
      "SCRAM-SHA-1",
      "SCRAM-SHA-256"
      ]
      ]


      And this is how I connect to mongoose :



       let options = 
      user: 'admin',
      pass: "admin",
      useNewUrlParser: true,


      mongoose.connect(`mongodb://$dbConfig.host:$dbConfig.port/$dbConfig.dbConfig.database`, options);


      This works.



      Now when I try to change the password :



       db.updateUser("admin", pwd: "admin2" ) 


      I got the following error :



      MongoError: Authentication failed.


      So I tried to log in directly with mongo command (note the authentication database):



      mongo --username admin --password --authenticationDatabase mydb --host XXX --port 27017


      I can authenticate properly, but not with mongoose. So I try to add the authSource parameter



       let options = 
      user: 'admin',
      pass: "admin2",
      useNewUrlParser: true,


      mongoose.connect(`mongodb://$dbConfig.dbConfig.host:$dbConfig.dbConfig.port/$dbConfig.dbConfig.database?authSource=$dbConfig.dbConfig.database`, options);


      I have an authentication error. This is my connection code :



      var db = mongoose.connection;
      db.on('error', console.error.bind(console, 'connection error:'));

      db.on('connected', () =>
      server.listen(
      port,
      function()
      console.log(`Listen on port $port`);
      console.log(`Environnement is $process.env.NODE_ENV`);
      console.log(`database connected $dbConfig.dbConfig.host $dbConfig.dbConfig.database`)
      );

      );


      There is also a wierd behaviour according to the following scenarios : (after changing the password)



      • Wrong credentials (admin/admin) + no authSource => throw an Error event (authentication failed)

      • Wrong credentials (admin/admin) + authSource => throw an Error event (authentication failed)

      • Correct credentials + authSource => goes to 'connected event' but display a Authentication failed error

      • Correct credentials + no authSource => same as above

      So whenever I change the credentials it throw an Error, but I am able to authenticate to the database with mongoshell.



      Finally, if I change back the credentials to "admin/admin" it works perfectly.



      TLDR :



      • Try to change my mongo's user password to admin2

      • Works with mongoshell but not with the app

      • Looks like it only works with admin as password and no authSource









      share|improve this question














      I'm having issues when I try to connect to mongodb with mongoose. I created an admin/admin user, but when I try to change it, it doesn't work.
      I'm using mongoose 5.0.6 and mongo 4.0.5



      This is my mongo user :



      > db.getUsers()
      [

      "_id" : "mydb.admin",
      "user" : "admin",
      "db" : "mydb",
      "roles" : [

      "role" : "userAdminAnyDatabase",
      "db" : "admin"

      ],
      "mechanisms" : [
      "SCRAM-SHA-1",
      "SCRAM-SHA-256"
      ]
      ]


      And this is how I connect to mongoose :



       let options = 
      user: 'admin',
      pass: "admin",
      useNewUrlParser: true,


      mongoose.connect(`mongodb://$dbConfig.host:$dbConfig.port/$dbConfig.dbConfig.database`, options);


      This works.



      Now when I try to change the password :



       db.updateUser("admin", pwd: "admin2" ) 


      I got the following error :



      MongoError: Authentication failed.


      So I tried to log in directly with mongo command (note the authentication database):



      mongo --username admin --password --authenticationDatabase mydb --host XXX --port 27017


      I can authenticate properly, but not with mongoose. So I try to add the authSource parameter



       let options = 
      user: 'admin',
      pass: "admin2",
      useNewUrlParser: true,


      mongoose.connect(`mongodb://$dbConfig.dbConfig.host:$dbConfig.dbConfig.port/$dbConfig.dbConfig.database?authSource=$dbConfig.dbConfig.database`, options);


      I have an authentication error. This is my connection code :



      var db = mongoose.connection;
      db.on('error', console.error.bind(console, 'connection error:'));

      db.on('connected', () =>
      server.listen(
      port,
      function()
      console.log(`Listen on port $port`);
      console.log(`Environnement is $process.env.NODE_ENV`);
      console.log(`database connected $dbConfig.dbConfig.host $dbConfig.dbConfig.database`)
      );

      );


      There is also a wierd behaviour according to the following scenarios : (after changing the password)



      • Wrong credentials (admin/admin) + no authSource => throw an Error event (authentication failed)

      • Wrong credentials (admin/admin) + authSource => throw an Error event (authentication failed)

      • Correct credentials + authSource => goes to 'connected event' but display a Authentication failed error

      • Correct credentials + no authSource => same as above

      So whenever I change the credentials it throw an Error, but I am able to authenticate to the database with mongoshell.



      Finally, if I change back the credentials to "admin/admin" it works perfectly.



      TLDR :



      • Try to change my mongo's user password to admin2

      • Works with mongoshell but not with the app

      • Looks like it only works with admin as password and no authSource






      node.js mongodb mongoose






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 21 at 14:19









      TLRTLR

      1892416




      1892416






















          0






          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55282532%2fcant-connect-to-the-database-with-mongoose%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55282532%2fcant-connect-to-the-database-with-mongoose%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Obelisk of Theodosius Contents History Description Notes Bibliography Further reading External links Navigation menuAge of spirituality : late antique and early Christian art, third to seventh centuryOver 60 picturesObelisks of the World41°00′21.24″N 28°58′31.43″E / 41.0059000°N 28.9753972°E / 41.0059000; 28.97539727724550-7235741376235741376

          밀양 대씨 역사 각주 함께 보기 둘러보기 메뉴밀양 대씨

          1973년 목차 사건 문화 탄생 사망 노벨상 달력 둘러보기 메뉴