Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6062689
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T09:04:50+00:00 2026-05-23T09:04:50+00:00

so using the mongodb shell, I was able to create a database and add

  • 0

so using the mongodb shell, I was able to create a database and add a username and password to it. How can I do the same in php? I have everything installed and able to connect to mongodb server.

However, I can’t find any information in the doc.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T09:04:51+00:00Added an answer on May 23, 2026 at 9:04 am

    I do not believe addUser() is implemented in the PHP driver.

    However, there is an execute that should allow you to do an addUser() the same way you would from the mongo shell:

    EDIT: After testing, I couldn’t get execute to do what you wanted, but I did find that the following works:

    <?php
      // open connection
      $mongo = new Mongo("mongodb://" . MONGO_USER . ":" . MONGO_PASS . "@" . MONGO_HOST, array("persist" => "abcd1234"));
      $db = $mongo->selectDB("admin");
    
      // user info to add
      $username = "testUser";
      $password = "testPassword";
    
      // insert the user - note that the password gets hashed as 'username:mongo:password'
      // set readOnly to true if user should not have insert/delete privs
      $collection = $db->selectCollection("system.users");
      $collection->insert(array('user' => $username, 'pwd' => md5($username . ":mongo:" . $password), 'readOnly' => false));
    ?>
    

    That adds a new user to the admin db on my server – checked via mongo shell after executing PHP script.

    That said – why do you want to add a Mongo user from a PHP script?

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have inserted and fetched data using MongoDB, in PHP. Is there an actual
So I'm building an app using PHP and MongoDB which will have a fair
I have very interested in using MongoDB it seems awesome. But I'm from a
I have been using MongoDB and the Ruby driver and Mongoid, and lines db.things.find({j:
I'm using MongoDB in a reporting system and have to delete a whole bunch
I am using javaeventing to write an even driven shell to access a database.
Using mongodb with the NoRM driver I have this document: { _id : ObjectId(0758030341b870c019591900),
When using the MongoDB shell, how do I use a guid datatype (which I
I have mongodb running on a remote server. I can ssh to the remote
Using MongoDB I'm trying to copy a database from one server to another. My

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.