過去のある時点で、db.addUser(...) を使用してユーザーを作成しました。そのユーザーのパスワードを変更するにはどうすればよいですか?
userAdmin ロールを持つユーザーでログインしました。別のユーザーのパスワードを変更するには、どのコマンドを使用すればよいですか?
編集 2
v2.4 スタイルの addUser および権限ドキュメントについて、これに回答する必要があります
- http://docs.mongodb.org/manual/tutorial/add-user-to-database/
- http://docs.mongodb.org/manual/reference/privilege-documents/
編集
2.2 の addUser 構文を使用してパスワードを変更することをお勧めします。これは動作しません:
db.addUser({user: "test", pwd: "oldPassword", roles: ["readWrite"]})
db.addUser("test", "newPassword")
与える
uncaught exception: couldn't add user: system.users entry must not have both 'roles' and 'readOnly' fields