问题/疑问
我正在测试运行redgate部署的脚本。在最后一步,它启动了一个网站:
import-module WebAdministration
$website = get-website | where-object { $_.name -eq $RedGateWebSiteName }
#(re)write HostName#
$binding = Get-WebBinding -Name $RedGateWebSiteName
Set-WebBinding -Name $RedGateWebSiteName -BindingInformation "*:80:*" -PropertyName HostHeader -Value $HostName
if ($website) {
Start-Website "$RedGateWebSiteName"
}
它始终有效,但现在我收到此错误的最后几天
At D:\inetpub\Timeblockr-RedGate\Api\PostDeploy.ps1:15 char:15
+ Start-Website <<<< "$RedGateWebSiteName"
+ CategoryInfo : InvalidOperation: (:) [Start-Website], COMException
+ FullyQualifiedErrorId : InvalidOperation,Microsoft.IIs.PowerShell.Provider.StartWebsiteCommand
IIS错误
The World Wide Web Publishing Service (WWW Service) did not register the URL prefix http://*:80/ for site 3. The necessary network binding may already be in use. The site has been disabled. The data field contains the error number.
这个问题"Cannot create a file" error when running Start-Website command in Powershell给出了一个非常好的线索。
修改
查看我的事件日志并查看答案后,我发现当Redgate自动尝试安装/启动网站时,我收到此IIS错误:
The World Wide Web Publishing Service (WWW Service) did not register the URL prefix http://*:80/ for site 3. The necessary network binding may already be in use. The site has been disabled. The data field contains the error number.
在此Serverfault中:https://serverfault.com/questions/456217/the-world-wide-web-publishing-service-www-service-did-not-register-the-url有人提到其原因是IIS网站是在没有hostheader的情况下创建的。我尝试启动网站后添加了主机头。让我们找到解决方案
编辑2:
我尝试启动网站后添加了主机名。这导致该网站具有空主机名并且在IIS中存在冲突。 (或者别的地方)。
我已经更改了我的脚本以获取网站,添加主机名然后启动网站。
还添加了&#34; $RedgateWebsiteName"
而不是$RedGateWebSiteName.
现在完美无缺!
编辑3: 经过一系列测试后,我似乎最终得到了同样的错误。一个部署没有问题,另一个部署确实有。
编辑4: 我已经更新了脚本/错误/帖子。 在我点击安装后,我从IIS中删除了我的网站。完美安装 - 没问题,自动启动。 第二次运行完全相同,第三次运行我得到上面的错误!
答案 0 :(得分:1)
我猜测$ RedGateWebSiteName变量没有被赋值,假设日志消息用其值替换变量。从谷歌搜索,看起来IIS“文件已存在”消息可能是错误的,因为它发生的任何事情,从缺少IP地址绑定到无效的虚拟目录文件夹。
答案 1 :(得分:1)
为什么需要脚本来启动网站?如果您使用的是Red Gate Deployment Manager,它会在部署Web包(任何包含web.config文件的包)后启动网站。
可能是$ RedGateWebSiteName的值替换没有发生,它可能需要双引号:
Start-Website“$ RedGateWebSiteName”
我这样说是因为您的错误消息说明了这一点:
Start-Website&lt;&lt;&lt;&lt; $ RedGateWebSiteName
,而错误消息here显示替换值:
start-website&lt;&lt;&lt;&lt; “MyWebsite”
答案 2 :(得分:0)
我在使用以下网站启动网站时遇到了完全相同的问题:
Start-Website -Name MyWebSiteName
它不会开始。当我尝试在IIS管理器中手动启动它时,它也不会启动,我收到此错误消息:
The World Wide Web Publishing Service (W3SVC) is stopped. Websites cannot be started unless the World Wide Web Publishing Service (W3SVC) is running.
很明显,服务没有启动,结果证明是真的。