Showing posts with label SITECORE 9. Show all posts
Showing posts with label SITECORE 9. Show all posts

Sunday 13 January 2019

Cannot process argument transformation on parameter 'Signer' during CreateSignedCert : NewSignedCertificate: Sitecore 9 Installation Issue

Getting this issue when i was trying to install another Sitecore 9 instance, did some google and found that need to first remove all the existing Sitecore certificates for CurrentUser and LocalMachine.
After this it works fine for me. 
Remember if already any Sitecore instance is running, then do not need to remove certificate for that instance

NewSignedCertificate-Sitecore


Below are the steps to fix this issue:

  • Open mmc (by win+R and type mmc)
  • Click on file and open Add/Remove Snap-in (CTRL+M)
  • Select Certificates from Left hand side and click on Add

  • Select as Computer Account - Next - Local Computer - Finish - OK
  • Console Root - Certificates (local Computer) -  Personal - Certificates
    • And now delete all the *.xconnect, *_SIF, *_sitecore_* related certificates
  • Same follow for Console Root - Certificates (local Computer) -  Trusted Root Certification Authorities - Certificates
    • And now delete all the *.xconnect, *_SIF, *_sitecore_* related certificates

removing-sitecore-certificate

  • Now again Click on file and open Add/Remove Snap-in (CTRL+M)
  • Select Certificates from Left hand side and click on Add
  • Select as Computer Account - Next - My User Account - OK - OK
  • Console Root - Certificates (local Computer) -  Personal - Certificates
    • And now delete all the *.xconnect, *_SIF, *_sitecore_* related certificates
  • Same follow for Console Root - Certificates (local Computer) -  Trusted Root Certification Authorities - Certificates
    • And now delete all the *.xconnect, *_SIF, *_sitecore_* related certificates
remove-sitecore-certificate-currentuser

After these steps, remove physical certificate files from directory c:certificates/

Now again run the final installation script, hope this will help to fix coming issue while installation.


Sunday 24 December 2017

Guideline: Sitecore 9 Setup on local Machine


  • Since already prepared a ppt related to this at


     

and also uploaded updated version of ppt also attached with github repository

https://github.com/sitecorelibraries/sitecorelibraries.github.io/blob/master/Documentation/Guidlines_Sitecore9_Installation._v1.1.pptx

Please let me know if facing any issue.

Have a Good day!!!

Tuesday 19 December 2017

~/App_Config/include has no config with fresh instance: sitecore 9

sitecore-config-info



It's strange but noticed that now with sitecore 9, there is no configs at path ~\App_Config\Include\
As per my understanding, now there is a config at path ~\App_config\Layer.config
which has following statements like:

  <layer name="Modules" includeFolder="/App_Config/Modules/" />
  <layer name="Custom" includeFolder="/App_Config/Include/" />
  <layer name="Environment" includeFolder="/App_Config/Environment/" />

that mean from sitecore 9, layer structure introduced for modules, custom, environment and others.
Since currently after fresh instance with sitecore 9 there is no custom configs that's why
~\App_Config\Include\ has no configs, and if we wanted to add some of the custom configs then will come under the custom Layer.


Saturday 9 December 2017

Windows could not start the solr service on Local Computer: Sitecore 9 Installation

While Creating solr service with nssm-2.24.zip then service is created by but while trying to restart/start getting error as

Windows could not start the solr service on Local Computer. The service did not return an error. This could be an internal Windows error or an internal service error. If the problem persists, contact your system administrator.

I also faced same issue and to fix this here we have two approaches:
First one is - Please make sure command prompt is closed (where earlier you may ran solr start ), if not closed then first close the command prompt and then again restart solr service. It will work.

Second approach will have below steps:

1. from the cmd (as admin) at the path ~/nssm-2.24/win64 run the command as
> nssm remove solr

Now check from services that solr service is removed or not, if not
 then firstly stop solr service from service setting manually and then run the above command hope   will work.

2. after this, remove the existing nssm-2.24(from directory) and download this version of NSSM and extract at the same place.

3. now again create the solr service via this nssm version Issue will be resolved.

Let me know if any issue.

Have a Good Day!!!

Friday 8 December 2017

Sitecore 9 Installation Scaffolding things

sitecore9-scaffolding

Sitecore 9 is the biggest announcement from sitecore.
And while doing the installation process on your system, it is necessary that all the prequiestics are there as well as at their right place. And here scaffolding will make more sense. Below is my observations and scaffolding things for Sitecore Instance.

Sitecore Instance Directory 
will contains:
 SIF(If doing installation things with the help of SIFLess.exe) / final script for Sitecore Installation
solrssl.ps1 (to generate ssl for solr).

Sitecore Repository Directory

Configs
extracted files of the configs file(XP0 Configuration files rev.171002.zip)
   License
License.xml
Solr
extracted file of the solr (solr-6.6.x.zip)
NSSM
extracted files of the nssm (nssm 2.24.zip)

Sitecore 9.0.0 rev. 171002 (OnPrem)_xp0xconnect.scwdp.zip

Sitecore 9.0.0 rev. 171002 (OnPrem)_single.scwdp.zip

SitecoreInstallFramework 1.0 rev. 171003.zip

With this way suppose in future we need more instances then we required to create only Another Sitecore Instance Directory and add SIF, Else everything it will take from Sitecore Repository.


Let me know your valuable feedbacks.

Have a Good Day!!!