从 C# 驱动程序 API 关闭 Mongo 服务器

发布于 2024-11-10 08:40:06 字数 380 浏览 0 评论 0原文

我想在应用程序退出时从我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

放低过去 2024-11-17 08:40:06

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文