Sitecore Environment Identification Tip

Today you get a simple quick tip for managing multiple Sitecore instances. If your infrastructure has a lot of servers and is scaled in such a way that you manage content on multiple authoring instances, its certainly possible for you to accidentally log into the wrong instance to author some content. In many environments I’ve worked in, Sitecore applications may be scaled for various reasons such as development, quality assurance, pre-production / testing, and production. If you have two or more authoring instances, one simple thing you can do is configure an environment-specific welcome title for the Sitecore login screen. This may act as a simple gut check when you log into Sitecore to make sure you’re logging into the right instance.

First add a patch config, such as /App_Config/Include/WelcomeTitle.config.

Next add a message that is specific to that server:

[xml]
<configuration xmlns:patch="http://www.sitecore.net/xmlconfig/">
<sitecore>
<settings>
<setting name="WelcomeTitle">
<patch:attribute name="value">Production Environment</patch:attribute>
</setting>
</settings>
</sitecore>
</configuration>
[/xml]

Here are some samples:

env-1

env-2

Oh and don’t forget to change your admin password to something other than “b” 😉

 

Mark Ursino

Mark is Sr. Director at Rightpoint and a Sitecore MVP.

 

One thought on “Sitecore Environment Identification Tip

  1. I have tried the above steps but the text is not getting changed in the login page.Is there anything else need to change or configure?

    Thanks for your valuable articles.

Leave a Reply

Your email address will not be published. Required fields are marked *

 

This site uses Akismet to reduce spam. Learn how your comment data is processed.