mongodb 以管理員登錄並創建 database


mongodb 以管理員登錄並創建 database

在一個有了用戶名的數據庫集中,即使在 admin 數據庫中創建了用戶,登錄上去后還是不能訪問其他數據庫的,但是用   登錄是可以的呀,雖然可以在相應數據庫中再建立用戶,但別的程序都不用是怎么回事?

 

原來是要在用戶名后加上 "(admin)" 標識.

例如

            //ok//MongoServer server = MongoServer.Create("mongodb://root:111@192.168.0.34:27017/?connect=direct;slaveOk=true"); // connect to localhost
            MongoServer server = MongoServer.Create("mongodb://root(admin):111@192.168.0.34:27017/?connect=ReplicaSet;slaveOk=true"); // connect to localhost
是在以下找到的,用的 baidu 關鍵字 "MongoDatabase GetDatabase Invalid credentials for database"

關鍵字來源於 C# 的錯誤提示:

"

An unhandled exception of type 'MongoDB.Driver.MongoAuthenticationException' occurred in MongoDB.Driver.dll

Additional information: Invalid credentials for database 'demoBaseaaa'.

"

本來想查找 mongodb.exe 中是怎么實現的 use,結果發現它調用 js..  找了半天也沒找到 C# 如何實現這樣的先 use admin 再 use 普通 database 的,看來 API 和它的 shell tool 實現還是有差異.

http://groups.google.com/group/mongodb-user/browse_thread/thread/82132048f3ba1f6d

--------------------------------------------------

Creating a database from the 10gen C# driver
   
      共 7 個帖子 - 全部折疊  -  將所有內容翻譯成中文(簡體)  
     
ALH  
查看個人資料   翻譯成中文(簡體)
 更多選項 1月19日, 上午12時05分
How do I create a database from using 10gen C# driver? I have tried
this using the GetDatabase method in MongoServer with no luck. Also,
how would I do this if running in authentication mode? Is it any
different then running within a replica set? Thanks.
 
     

     
Robert Stam  
查看個人資料   翻譯成中文(簡體)
 更多選項 1月19日, 上午12時11分

The database will be created automatically when you insert the first
document.

When running in authentication mode you must provide the credentials to use
for that database, like this:

var credentials = new MongoCredentials("username", "password");
var database = server.GetDatabase("databaseName", credentials);

The only thing different about running with a replica set is that your
connection string must have a seed list containing all or some of the
replica set members.

 
     

     
ALH  
查看個人資料   翻譯成中文(簡體)
 更多選項 1月27日, 下午8時22分
Hi Robert,

Thanks for the reply. I have ran into some issues with the suggested
approach that I would like to share with you. So, just to recap:

I want to create a new database and then a new collection in that
database.

Here is what I am doing in code to achieve the above:

// Connect to server
var url = "mongodb://someAdminUser:someAdminUserPassword@localhost:
9001/admin"
var server = MongoServer.Create(url);

// Create my new database
var db = server.GetDatabase("SomeNewDatabase");

// Create my new collection
var collection = db.CreateCollection("MyNewCollection");

Observations:

I am running in authenticated mode but the database has not been
create yet, therefore, has no user credentials to authenticate against

Questions:

1. Given that I am running in authenticated mode what is the proper
way to connect to the server so that I can create a database that at
creation will not have any credentials? (please see the below error
message I am getting when executing the above code sample)
2. Is there a way to create a database without writing any data like
you would in SQL Server? I am currently doing this from the mongo
shell in PowerShell using connect("MyNewDatabase"). I would be willing
to write a CreateDatabase method if you can provide guidance.

Invalid credentials for database 'SomeTestDatabase'.
   at MongoDB.Driver.Internal.MongoConnection.Authenticate(String
databaseName, MongoCredentials credentials) in C:\work\10gen\mongodb
\mongo-csharp-driver\Driver\Internal\MongoConnection.cs:line 165
   at
MongoDB.Driver.Internal.MongoConnection.CheckAuthentication(MongoDatabase
database) in C:\work\10gen\mongodb\mongo-csharp-driver\Driver\Internal
\MongoConnection.cs:line 244
   at
MongoDB.Driver.MongoServerInstance.AcquireConnection(MongoDatabase
database) in C:\work\10gen\mongodb\mongo-csharp-driver\Driver\Core
\MongoServerInstance.cs:line 260
   at MongoDB.Driver.MongoServer.AcquireConnection(MongoDatabase
database, Boolean slaveOk) in C:\work\10gen\mongodb\mongo-csharp-driver
\Driver\Core\MongoServer.cs:line 1052
   at MongoDB.Driver.MongoCursorEnumerator`1.AcquireConnection() in C:
\work\10gen\mongodb\mongo-csharp-driver\Driver\Core
\MongoCursorEnumerator.cs:line 184
   at MongoDB.Driver.MongoCursorEnumerator`1.GetFirst() in C:\work
\10gen\mongodb\mongo-csharp-driver\Driver\Core
\MongoCursorEnumerator.cs:line 194
   at MongoDB.Driver.MongoCursorEnumerator`1.MoveNext() in C:\work
\10gen\mongodb\mongo-csharp-driver\Driver\Core
\MongoCursorEnumerator.cs:line 126
   at MongoDB.Driver.MongoDatabase.GetCollectionNames() in C:\work
\10gen\mongodb\mongo-csharp-driver\Driver\Core\MongoDatabase.cs:line
662
   at MongoDB.Driver.MongoDatabase.CollectionExists(String
collectionName) in C:\work\10gen\mongodb\mongo-csharp-driver\Driver
\Core\MongoDatabase.cs:line 305

Thanks.

Best Regards,
RelayHealth
Albert L. Hives

On Jan 18, 8:11 am, Robert Stam <rob...@10gen.com> wrote:

 
     

     
Robert Stam  
查看個人資料   翻譯成中文(簡體)
 更多選項 1月27日, 下午11時07分
If you want the default credentials supplied in the URL to be
authenticated against the admin database you put "(admin)" after the
username in the URL, like this:

var url = "mongodb://
someAdminUser(admin):someAdminUserPassword@localhost:9001"

When you authenticate against the admin database you gain access to
all databases at once (including the new one you are about to create).

On Jan 27, 7:22 am, ALH <ahi...@gmail.com> wrote:

 
     

     
ALH  
查看個人資料   翻譯成中文(簡體)
 更多選項 1月28日, 上午12時58分
Hi Robert,

This totally worked though I could not find this connection string on
the driver docs @ http://www.mongodb.org/display/DOCS/CSharp+Driver+Tutorial#CSharpDriv...

On Jan 27, 7:07 am, Robert Stam <rob...@10gen.com> wrote:

 
     

     
Robert Stam  
查看個人資料   翻譯成中文(簡體)
 更多選項 1月28日, 上午1時05分
 
     

     
ALH  
查看個人資料   翻譯成中文(簡體)
 更多選項 1月28日, 上午3時06分
You are correct. I see it now. Thanks again. :)

On Jan 27, 9:05 am, Robert Stam <rob...@10gen.com> wrote:

 
     

--------------------------------------------------

里面說幫助頁面上有說明的,看了一下的確有..就是說得太隱晦了:

Connection strings

The easiest way to connect to a MongoDB server is to use a connection string. The standard connection string format is:

mongodb://[username:password@]hostname[:port][/[database][?options]]

The username and password should only be present if you are using authentication on the MongoDB server. These credentials will be the default credentials for all databases. To authenticate against the admin database append "(admin)" to the username. If you are using different credentials with different databases pass the appropriate credentials to the GetDatabase method.

嗯,主要是我英文太爛,又沒想到它的字符串示例沒列出來完.

http://www.mongodb.org/display/DOCS/CSharp+Driver+Tutorial#CSharpDriverTutorial-TheC%23Driver

原來有一個完整的

            //字符串來自  http://www.mongodb.org/display/DOCS/CSharp+Driver+Tutorial#CSharpDriverTutorial-Connectionstrings

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM