从 C# 驱动程序 API 关闭 Mongo 服务器
我想在应用程序退出时从我的 C# 应用程序关闭 MongoDB 服务器。
我正在使用 MongoServer
对象的 RunAdminCommand
来执行此操作。下面是代码片段。
MongoServer server = MongoServer.Create( @"mongodb://localhost:27019" );
server.RunAdminCommand ( @"shutdown" ) ;
尽管我看到服务器被关闭,但执行在第二行冻结并且永远不会返回。
它不会引发任何异常。我尝试使用 VS 2010 的“公共语言运行时异常”设置,但没有成功。
我做错了什么?
I want to shutdown the MongoDB server from my C# application when application exits.
I am using RunAdminCommand
of MongoServer
object to do this. Below is the code snippet.
MongoServer server = MongoServer.Create( @"mongodb://localhost:27019" );
server.RunAdminCommand ( @"shutdown" ) ;
The execution freezes at the second line and never returns back, though I see the server being shut down.
It does not raise any exceptions. I tried with "Common Language Runtime Exceptions" setting of the VS 2010 without any success.
What am I doing wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
MongoDb C# 驱动程序似乎存在问题。
从文档中我发现他们正在 C# 驱动程序 1.1 版本中解决这个问题。
该修复可在最新的源代码中找到。
——巴拉特
It seems that there is an issue with MongoDb C# Driver.
From the documentation I found that they are resolving this issue in the version 1.1 of C# Driver.
The fix is available in the latest source code.
--Bharat