安装 Sitecore 9,安装 SOLR 核心时出现 SIF 错误
Installing Sitecore 9, SIF Error on installing SOLR cores
使用 SIF 安装 Sitecore 时,遇到以下错误。
这些是我的模块
谁能帮忙谢谢
对于 Sitecore 9.0 (update-x),您需要 SIF 1.2.1,
由于您已经有较新的 SIF 版本,它将使用最新版本并失败。
您可以将此添加到您的 PowerShell 脚本的顶部以强制使用 1.2.1 版本:
Remove-Module -Name SitecoreInstallFramework
Import-Module -Name SitecoreInstallFramework -RequiredVersion 1.2.1
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned
注意:如果您之前已经安装了具有更高 SIF 版本的 Sitecore,那么当您修复错误的 SIF 版本错误时,您可能 运行 遇到了证书问题。参见 Sitecore XP 9.0 Update-2 installation fails when XP 9.1 is installed on the same PC
或者您可以使用 certmgr 删除不需要的其他 Sitecore 证书(个人和受信任的根证书颁发机构)
或使用 PowerShell:
Set-Location Cert:\LocalMachine\Root
#get a list
Get-ChildItem | Format-Table FriendlyName, Thumbprint -AutoSize
#example of remove a certificate
Get-ChildItem Cert:\LocalMachine\Root1F9A11F82BF45DA853BE573811AFF4ACA3B7CE | Remove-Item
因为您的安装失败,也有可能您已经创建了与安装程序尝试创建的 DNS 名称完全相同的证书,您还需要删除未使用的旧证书。
前段时间,我们也遇到了这个问题。经过一些研究,我们发现参数 "name" 的大小写在安装程序脚本和配置文件之间不匹配(脚本使用“name”,而配置文件提到“姓名”)。重命名配置文件中的参数后,安装过程可以继续。
sitecore-solr.json
xconnect-solr.json
使用 SIF 安装 Sitecore 时,遇到以下错误。
这些是我的模块
谁能帮忙谢谢
对于 Sitecore 9.0 (update-x),您需要 SIF 1.2.1, 由于您已经有较新的 SIF 版本,它将使用最新版本并失败。
您可以将此添加到您的 PowerShell 脚本的顶部以强制使用 1.2.1 版本:
Remove-Module -Name SitecoreInstallFramework
Import-Module -Name SitecoreInstallFramework -RequiredVersion 1.2.1
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned
注意:如果您之前已经安装了具有更高 SIF 版本的 Sitecore,那么当您修复错误的 SIF 版本错误时,您可能 运行 遇到了证书问题。参见 Sitecore XP 9.0 Update-2 installation fails when XP 9.1 is installed on the same PC 或者您可以使用 certmgr 删除不需要的其他 Sitecore 证书(个人和受信任的根证书颁发机构) 或使用 PowerShell:
Set-Location Cert:\LocalMachine\Root
#get a list
Get-ChildItem | Format-Table FriendlyName, Thumbprint -AutoSize
#example of remove a certificate
Get-ChildItem Cert:\LocalMachine\Root1F9A11F82BF45DA853BE573811AFF4ACA3B7CE | Remove-Item
因为您的安装失败,也有可能您已经创建了与安装程序尝试创建的 DNS 名称完全相同的证书,您还需要删除未使用的旧证书。
前段时间,我们也遇到了这个问题。经过一些研究,我们发现参数 "name" 的大小写在安装程序脚本和配置文件之间不匹配(脚本使用“name”,而配置文件提到“姓名”)。重命名配置文件中的参数后,安装过程可以继续。
sitecore-solr.json
xconnect-solr.json