Sharepoint 2010 拓扑有此问题吗?

发布于 2024-12-02 06:14:36 字数 438 浏览 0 评论 0原文

我已在我的组织中安装了 sharepoint 2010 场。其中机器 1 有 Sql 服务器 r2,机器 2 有 Sharepoint 服务器,机器 3、4、5、6 仅具有前端层。

我正在编写一个程序,在其中我试图仅获取共享点服务器的名称,而不是 SQL 服务器的名称。所以我尝试了这一行:

SPServerCollection collection = new SPServerCollection(SPFarm.Local);
                collection = SPFarm.Local.Servers;

但它应该给我场中的所有服务器,除了 Sql 服务器实例。如何识别服务器类型,例如 ..这是 sp 前端层,...这是 sp 中央管理服务器 .. 在 C# 中。如何做到这一点?

以及如何在每个服务器中获取 Web 应用程序。 ?

I have installed sharepoint 2010 farm in my organization. where machine 1 has Sql server r2, Machine 2 has Sharepoint server, Machine 3,4,5,6 has Front tier only.

I am writing the program in which i am trying to get the name of only sharepoint servers, not sql server. so i tried this line :

SPServerCollection collection = new SPServerCollection(SPFarm.Local);
                collection = SPFarm.Local.Servers;

But It should give me all servers in the farm, except Sql server instance. how to identify the server type like ..this is sp front tier,...this is sp central administration server.. in c#. How to do this ?

Also how to get web applications in each server. ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

追星践月 2024-12-09 06:14:36
static void Main(string[] args)
    {
        SPFarm farm = new SPFarm();
        farm = SPFarm.Local;
        SPServerCollection myServerCollection=farm.Servers;
        foreach (SPServer myServer in  myServerCollection)
        {
            Console.WriteLine(myServer.Name + " " + myServer.Role);
        }
        Console.Read();
    }
static void Main(string[] args)
    {
        SPFarm farm = new SPFarm();
        farm = SPFarm.Local;
        SPServerCollection myServerCollection=farm.Servers;
        foreach (SPServer myServer in  myServerCollection)
        {
            Console.WriteLine(myServer.Name + " " + myServer.Role);
        }
        Console.Read();
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文