我为IIS中的默认站点创建了一个虚拟目录,它引用了我的网站所在的目录。

一切正常运行良好,因为默认站点听到端口80,Web应用程序正常工作。

在某些时候,SharePoint安装在我正在工作的服务器上,禁用默认站点,并启用“SharePoint - 80”,该“SharePoint - 80”侦听端口80。

似乎没有使用SharePoint完成的任何其他配置,除了安装它。

添加已有现有网站的正确方法是从SharePoint分开创建的?

有帮助吗?

解决方案

Use a different URL for SharePoint and configure 'SharePoint - 80' to listen for only that host name. I.e. configure your sharepoint to be something like sp.company.com and then set the bindings in IIS for the sharepoint site to look for only that specific host name. Likewise, you will need to configure the bindings for your other site to also listen for a specific host name so that it doesn't interfere with SharePoint.

However, if your SharePoint environment is going to be of any significant size, you will probably want to avoid sharing a server between SharePoint and other web apps. SharePoint can coexist with other web apps, but doing so makes troubleshooting performance issues and outages an absolute nightmare. SharePoint also has a rather large resource footprint and can choke other apps, particularly on the typical resource-starved virtual machine.

许可以下: CC-BY-SA归因
scroll top