Posts

Showing posts with the label Sitecore Installation

Steps to Enable Sitecore Analytics and Verify Data flow to Shard Databases

Hello everyone, This blog will help us to understand what settings are required to enable Sitecore Analytics in newly installed Sitecore instance. We will also see one common errors which get logged in our logs after setting up of our local instance. We will see the steps required to solve the same. Without wasting time, let's start with the steps. Steps to enable Analytics and verify data is flowing to Shard DB or not 1. Changed the below settings to true in the indexersettings.xml file in xconnect webroot   Path:C:\inetpub\wwwroot\xconnectinstance\App_Data\jobs\continuous\IndexWorker\App_Data\config\sitecore\SearchIndexer      o IndexPIISensitiveData      o IndexAnonymousContactData 2. Rebuilt the xconnect indexes using the following command. Refer  Rebuild XConnectIndex  for same. Path: C:\inetpub\wwwroot\xconnectinstance\App_Data\jobs\continuous\IndexWorker      o Sitecore.XConnectSearchIndexer -rr 3. Rebuilt the Sitecore i...

Sitecore 10.2 Installation using Windows PowerShell

Image
Hello everyone. Another blog post is here. This time we will see, how we can install Sitecore 10.2 locally using Windows PowerShell. Before proceeding for installation, there are some software's which will be required to be installed on system. Required Software: Visual Studio 2019 SQL server 2017 and above .NET  Framework 4.8 and above Once installed, we can proceed with Sitecore 10.2 installation. Step 1: Open Windows PowerShell (run as administrator) Step 2:  Run Command:   Set-ExecutionPolicy -Scope CurrentUser Unrestricted and Select Y Step 3:  Check if SIF framework is available:  Get-Module -Name SitecoreInstallFramework -ListAvailable Step 4: I f 2.3.0 is available, skip step 5 Step 5: If yes, then check the version. For Sitecore 10.2 the version should be 2.3.0. If 2.3.0 is not available then update your SIF version using command:  Update-Module SitecoreInstallFramework -force Step 6:   Now Enable the Co...