Sitecore 9 Installation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
backup database [SC90_Core] to disk = 'C:\\temp\\SC90_Core.bak'; | |
backup database [SC90_EXM.Master] to disk = 'C:\\temp\\SC90_EXM.Master.bak'; | |
backup database [SC90_ExperienceForms] to disk = 'C:\\temp\\SC90_ExperienceForms.bak'; | |
backup database [SC90_Master] to disk = 'C:\\temp\\SC90_Master.bak'; | |
backup database [SC90_Processing.Tasks] to disk = 'C:\\temp\\SC90_Processing.Tasks.bak'; | |
backup database [SC90_Reporting] to disk = 'C:\\temp\\SC90_Reporting.bak'; | |
backup database [SC90_Web] to disk = 'C:\\temp\\SC90_Web.bak'; | |
backup database [SC90_MarketingAutomation] to disk = 'C:\\temp\\SC90_MarketingAutomation.bak'; | |
backup database [SC90_Messaging] to disk = 'C:\\temp\\SC90_Messaging.bak'; | |
backup database [SC90_Processing.Pools] to disk = 'C:\\temp\\SC90_Processing.Pools.bak'; | |
backup database [SC90_ReferenceData] to disk = 'C:\\temp\\SC90_ReferenceData.bak'; | |
backup database [SC90_Xdb.Collection.Shard0] to disk = 'C:\\temp\\SC90_Xdb.Collection.Shard0.bak'; | |
backup database [SC90_Xdb.Collection.Shard1] to disk = 'C:\\temp\\SC90_Xdb.Collection.Shard1.bak'; | |
backup database [SC90_Xdb.Collection.ShardMapManager] to disk = 'C:\\temp\\SC90_Xdb.Collection.ShardMapManager.bak'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
restore database [SC90_Core] from disk = 'C:\\temp\\SC90_Core.bak'; | |
restore database [SC90_EXM.Master] from disk = 'C:\\temp\\SC90_EXM.Master.bak'; | |
restore database [SC90_ExperienceForms] from disk = 'C:\\temp\\SC90_ExperienceForms.bak'; | |
restore database [SC90_Master] from disk = 'C:\\temp\\SC90_Master.bak'; | |
restore database [SC90_Processing.Tasks] from disk = 'C:\\temp\\SC90_Processing.Tasks.bak'; | |
restore database [SC90_Reporting] from disk = 'C:\\temp\\SC90_Reporting.bak'; | |
restore database [SC90_Web] from disk = 'C:\\temp\\SC90_Web.bak'; | |
restore database [SC90_MarketingAutomation] from disk = 'C:\\temp\\SC90_MarketingAutomation.bak'; | |
restore database [SC90_Messaging] from disk = 'C:\\temp\\SC90_Messaging.bak'; | |
restore database [SC90_Processing.Pools] from disk = 'C:\\temp\\SC90_Processing.Pools.bak'; | |
restore database [SC90_ReferenceData] from disk = 'C:\\temp\\SC90_ReferenceData.bak'; | |
restore database [SC90_Xdb.Collection.Shard0] from disk = 'C:\\temp\\SC90_Xdb.Collection.Shard0.bak'; | |
restore database [SC90_Xdb.Collection.Shard1] from disk = 'C:\\temp\\SC90_Xdb.Collection.Shard1.bak'; | |
restore database [SC90_Xdb.Collection.ShardMapManager] from disk = 'C:\\temp\\SC90_Xdb.Collection.ShardMapManager.bak'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Install-SitecoreConfiguration ` | |
-Path .\sitecore-solr.json ` | |
-CorePrefix SC90 ` | |
-SolrUrl https://solr:8983/solr ` | |
-SolrRoot C:\solr\solr-6.6.2 ` | |
-SolrService solr-6.6.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Install-SitecoreConfiguration ` | |
-Path .\sitecore-XP0.json ` | |
-Package ".\Sitecore 9.0.1 rev. 171219 (OnPrem)_single.scwdp.zip" ` | |
-LicenseFile "C:\temp\license.xml" ` | |
-SqlDbPrefix SC90 ` | |
-SolrCorePrefix SC90 ` | |
-XConnectCert sitecore-certificate ` | |
-SiteName sitecore9-website ` | |
-SqlAdminPassword password ` | |
-SqlServer . ` | |
-SolrUrl https://solr:8983/solr ` | |
-XConnectCollectionService https://sitecore9-xconnect/ ` | |
-XConnectReferenceDataService https://sitecore9-xconnect/ ` | |
-MarketingAutomationOperationsService https://sitecore9-xconnect/ ` | |
-MarketingAutomationReportingService https://sitecore9-xconnect/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Install-SitecoreConfiguration ` | |
-Path .\xconnect-solr.json ` | |
-CorePrefix SC90 ` | |
-SolrUrl https://solr:8983/solr ` | |
-SolrRoot C:\solr\solr-6.6.2 ` | |
-SolrService solr-6.6.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Install-SitecoreConfiguration ` | |
-Path .\xconnect-xp0.json ` | |
-Package ".\Sitecore 9.0.1 rev. 171219 (OnPrem)_xp0xconnect.scwdp.zip" ` | |
-LicenseFile "C:\temp\license.xml" ` | |
-SqlDbPrefix SC90 ` | |
-SolrCorePrefix SC90 ` | |
-XConnectCert sitecore-certificate ` | |
-SiteName sitecore9-xconnect ` | |
-SqlAdminPassword password ` | |
-SqlServer . ` | |
-SolrUrl https://solr:8983/solr |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment