As we all know PowerShell scripts makes our life lot easier especially during the troubleshooting in mid installations and this was another reason why I am preferring SIF rather than SIA GUI. The steps are quite same as the previous versions of the product. But this time, it uses SIF 2.3.0 for the installation process. If you are working in a different version of sitecore & got a requirement to hosting them as a separate instances sitecore services & SIF version, this blog would help you 😊.
1.a Sitecore Repository
Install-Module
-name SitecoreInstallFramework -RequiredVersion 2.3.0 -Repository
SitecoreGallery
1.b Packet Manager Console
Install-Package
SitecoreInstallFramework -Version 2.3.0 -Source https://sitecore.myget.org/F/sc-powershell/api/v3/index.json
2. List the Available Installation Frameworks
3. Choose & Import the available Installation Frameworks
Import-Module -name SitecoreInstallFramework -RequiredVersion 2.3.0 -Force
4. Installation
Install-SitecoreConfiguration -Path .\Prerequisites.json
$Prefix = "sc10" $SitecoreAdminPassword = "b" $SCInstallRoot = "C:\source\sitecore10" $LicenseFile = "$SCInstallRoot\license.xml" $SolrUrl = "https://localhost:8983/solr" $SolrRoot = "C:\Program Files\solr-8.4.0" $SolrService = "Solr8.4" $SqlServer = ".\SQLEXPRESS" $SqlAdminUser = "sa" $SqlAdminPassword = "password"
Here you go,
.\XP0-SingleDeveloper.ps1
It will take you through the hacker pro screen where you can see the scripts gets executed & commentary will help you to see if everything goes smoothly 😊 If something wrong we might need to check the same console for errors.
Tadaaaa! Installation is done I believe,
Site Home - Dashboard
Hopefully, there must be issues during the installation on Marketing Automation & other windows services app let me write another blog to describe how I fixed them 😊
Thank you for the time on my post!..
-Sathya
Comments
Post a Comment