Ram Prasad
 

Resolving the issues while configuring a Stand-Alone installation

Oct, 01 2012
 
1 min/s
 
 

After a long wait, I got a chance to install SharePoint 2013 Preview in one of the development environments. Whenever I install any Microsoft Product, I eagerly wait for the Configuration Failed/Installation Failed screen. As soon I started running the per-requisite installer for SharePoint 2013, things were getting installed without any issues. I was little surprised and a bit worried thinking the installation will complete without any issues. But Microsoft never disappoints me. Below are the issues I faced while doing a Stand-Alone installation of SharePoint 2013 preview.

Error 1: Failed to connect to the configuration database

"Failed to refresh all running servers in the cluster. You may need to restart the cluster for these changes to take effect." This error might come during the step 2 of the configuration wizard. Run the configuration wizard from command prompt with the following parameters

psconfigui.exe -cmd Configdb create SkipRegisterAsDistributedCacheHost

  • Open command prompt
  • Change the directory to 'C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\BIN'
  • And run the command as shown above

What will this command actually do?

After reading many SharePoint 2013 forums, I found that this issue comes while configuring the 'Distributed Cache Service', which is new in SharePoint 2013. While we run the configuration wizard, at step 2, it creates the configuration database and tries to configure the 'Distributed Cache Service' and this was failing in a Stand-Alone installation. The command which was used above will create the configuration database and continues the registration process by skipping the Distributed Cache Service configuration.

So, by following this workaround, we can complete the installation successfully, but the Cache service is not enabled. This workaround will limit the functionality and prevent the full evaluation of all the features. This issue doesn't come while doing a complete installation. Microsoft is yet to update the documentation about this issue for Stand-Alone installation (Reference: SharePoint forum)

Error 2: Failed to create sample data

This error comes at the 8th step in the configuration wizard. If you check the additional information, it says – "The Server Service is not started", which is self-explanatory. Open the Services console and start the 'Server' service and run the configuration wizard.