无法在SharePoint中创建可访问的主机名网站集

时间:2017-02-27 18:01:36

标签: sharepoint

这些是我运行管理员Windows Power Shell以向现有Web应用程序创建主机名网站集的命令

  1. powershell -version 2

  2. Add-PsSnapin Microsoft.SharePoint.PowerShell

  3. New-SPSite http://www.test5.sp/ -OwnerAlias MyDomain\administrator -HostHeaderWebApplication http://Mywebapplication/

  4. 在这一点上,我看到在管理中心Mywebapplication下创建的新网站集。

    我在主机文件中添加了一条新记录:

    127.0.0.1  test5.sp
    

    我得到test5.sp

    的ping

    我编辑了iis的绑定并添加了一个新的绑定:

    Type|Host Name|Port|Ip Address
    http|test5.sp |80  |127.0.0.1
    

    然后跑

    iisreset /noforce
    

    此时无法从浏览器访问test5.sp。 你能帮忙吗?

1 个答案:

答案 0 :(得分:0)

我设法访问了我在以下更改后创建的主机名网站集:

  1. 我将iis绑定更改为:
  2. Type|Host Name|Port|Ip Address
    http|test5.sp |80  |*
    
    1. 由于某些原因(我实际上并不了解),从安装了SharePoint的计算机访问主机名网站集时出现问题。 所以我将test5.sp添加到另一台机器上的主机文件中:
    2. [The ip address of the webapplication] test5.sp
      

      这解决了问题:)