端口80上的SharePoint 2010表面内容

时间:2012-06-15 07:16:44

标签: sharepoint sharepoint-2010

SharePoint newbiew问题,我已经安装了SharePoint 2010,并且希望能够在端口80上浏览某些东西。当SP配置它自己时它只创建了'http:// spimage:32001 /'32001,所以我手动创建了一个来自Central Admin的端口80(SharePoint-80'http:// spimage / '80)但是当我浏览到这个时,我只得到404.

我创建了一个网站集,认为它将驻留在端口80下以放置内容。 (http://spimage/sites/SPFWebApp/Pages/default.aspx),我可以浏览这个网站。

我的最终目标是能够浏览端口80并在SharePoint上展示一些东西(Hello World,因为想要更好的词),有谁知道我如何实现这么简单的任务:)

我希望能够显示我的网站集,但不一定是这样。

干杯

P.S。如果我去IIS并浏览SharePoint - 80我什么都没得到。

1 个答案:

答案 0 :(得分:1)

当您尝试为网站集创建另一个URL /端口时,您可能会混淆一些事情。

SharePoint基于Web应用程序 - 一个SharePoint WebApp可以是多个IIS Web应用程序。通过管理中心创建新的Web应用程序时>应用程序管理>新建您可以指定站点应该监听的端口和主机头。

enter image description here

SharePoint还为您创建了“IIS网站”或IIS Web应用程序,在这种情况下名称为“SharePoint - 80”。 enter image description here

但是当我现在尝试浏览这个新页面时,我得到了这个: enter image description here

为什么?。现在我的服务器不知道如何处理“mynewsharepoint.local”。所以我要么添加一个DNS条目,要么我去简单的路由并在hosts文件中添加一个条目(C:\ Windows \ system32 \ drivers \ etc):

127.0.0.1 mynewsharepoint.local

我现在得到404: enter image description here

为什么?我新创建的网络应用程序中没有网站集。所以我继续在http://mynewsharepoint.local/创建一个网站集: enter image description here

并且它有效: enter image description here


要点:

  • 检查您是否在主机文件中路由了自定义主机标头
  • 确保您的网络应用程序中有网站集
  • 在IIS中检查端口80上的“默认网站”已停止