SIF parameter that determines Solr core prefix

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP












1















I am having some trouble with correctly configuring the Solr core prefix using SIF.



How is the to use Solr core prefix determined in the SIF installation for Sitecore 9?



For example, will;



Install-SitecoreConfiguration -Sitename MySite ...


result in a MySite_ Solr core prefix?










share|improve this question




























    1















    I am having some trouble with correctly configuring the Solr core prefix using SIF.



    How is the to use Solr core prefix determined in the SIF installation for Sitecore 9?



    For example, will;



    Install-SitecoreConfiguration -Sitename MySite ...


    result in a MySite_ Solr core prefix?










    share|improve this question


























      1












      1








      1








      I am having some trouble with correctly configuring the Solr core prefix using SIF.



      How is the to use Solr core prefix determined in the SIF installation for Sitecore 9?



      For example, will;



      Install-SitecoreConfiguration -Sitename MySite ...


      result in a MySite_ Solr core prefix?










      share|improve this question
















      I am having some trouble with correctly configuring the Solr core prefix using SIF.



      How is the to use Solr core prefix determined in the SIF installation for Sitecore 9?



      For example, will;



      Install-SitecoreConfiguration -Sitename MySite ...


      result in a MySite_ Solr core prefix?







      sitecore-install-framework






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Feb 11 at 8:44







      Joost

















      asked Feb 11 at 8:04









      JoostJoost

      779114




      779114




















          1 Answer
          1






          active

          oldest

          votes


















          4














          SIF is offer you flexibility to choose Core prefix name.



          You can have something like:



          $prefix = "myprefix"
          $PSScriptRoot = Resolve-Path -Path ".XP0 Configuration files 9.0.1 rev. 171219"


          $SolrUrl = "https://solr:8983/solr"
          $SolrRoot = "C:solrsolr-6.6.2"
          $SolrService = "solr-6.6.2"


          $solrParams = @
          Path = "$PSScriptRootsitecore-solr.json"
          SiteName = "www.mysite.local"
          SolrUrl = $SolrUrl
          SolrRoot = $SolrRoot
          SolrService = $SolrService
          CorePrefix = $prefix



          And to install just use next task with solrParams parameter



           Install-SitecoreConfiguration @solrParams





          share|improve this answer























          • Thanks for the trigger, in my case I overlooked the SolrCorePrefix parameter in sitecore-XP0.json. This parameter is used to construct Solr.Core.Name and this is used to configure core name in Sitecore.

            – Joost
            Feb 11 at 9:18










          Your Answer








          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "664"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsitecore.stackexchange.com%2fquestions%2f16650%2fsif-parameter-that-determines-solr-core-prefix%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          4














          SIF is offer you flexibility to choose Core prefix name.



          You can have something like:



          $prefix = "myprefix"
          $PSScriptRoot = Resolve-Path -Path ".XP0 Configuration files 9.0.1 rev. 171219"


          $SolrUrl = "https://solr:8983/solr"
          $SolrRoot = "C:solrsolr-6.6.2"
          $SolrService = "solr-6.6.2"


          $solrParams = @
          Path = "$PSScriptRootsitecore-solr.json"
          SiteName = "www.mysite.local"
          SolrUrl = $SolrUrl
          SolrRoot = $SolrRoot
          SolrService = $SolrService
          CorePrefix = $prefix



          And to install just use next task with solrParams parameter



           Install-SitecoreConfiguration @solrParams





          share|improve this answer























          • Thanks for the trigger, in my case I overlooked the SolrCorePrefix parameter in sitecore-XP0.json. This parameter is used to construct Solr.Core.Name and this is used to configure core name in Sitecore.

            – Joost
            Feb 11 at 9:18















          4














          SIF is offer you flexibility to choose Core prefix name.



          You can have something like:



          $prefix = "myprefix"
          $PSScriptRoot = Resolve-Path -Path ".XP0 Configuration files 9.0.1 rev. 171219"


          $SolrUrl = "https://solr:8983/solr"
          $SolrRoot = "C:solrsolr-6.6.2"
          $SolrService = "solr-6.6.2"


          $solrParams = @
          Path = "$PSScriptRootsitecore-solr.json"
          SiteName = "www.mysite.local"
          SolrUrl = $SolrUrl
          SolrRoot = $SolrRoot
          SolrService = $SolrService
          CorePrefix = $prefix



          And to install just use next task with solrParams parameter



           Install-SitecoreConfiguration @solrParams





          share|improve this answer























          • Thanks for the trigger, in my case I overlooked the SolrCorePrefix parameter in sitecore-XP0.json. This parameter is used to construct Solr.Core.Name and this is used to configure core name in Sitecore.

            – Joost
            Feb 11 at 9:18













          4












          4








          4







          SIF is offer you flexibility to choose Core prefix name.



          You can have something like:



          $prefix = "myprefix"
          $PSScriptRoot = Resolve-Path -Path ".XP0 Configuration files 9.0.1 rev. 171219"


          $SolrUrl = "https://solr:8983/solr"
          $SolrRoot = "C:solrsolr-6.6.2"
          $SolrService = "solr-6.6.2"


          $solrParams = @
          Path = "$PSScriptRootsitecore-solr.json"
          SiteName = "www.mysite.local"
          SolrUrl = $SolrUrl
          SolrRoot = $SolrRoot
          SolrService = $SolrService
          CorePrefix = $prefix



          And to install just use next task with solrParams parameter



           Install-SitecoreConfiguration @solrParams





          share|improve this answer













          SIF is offer you flexibility to choose Core prefix name.



          You can have something like:



          $prefix = "myprefix"
          $PSScriptRoot = Resolve-Path -Path ".XP0 Configuration files 9.0.1 rev. 171219"


          $SolrUrl = "https://solr:8983/solr"
          $SolrRoot = "C:solrsolr-6.6.2"
          $SolrService = "solr-6.6.2"


          $solrParams = @
          Path = "$PSScriptRootsitecore-solr.json"
          SiteName = "www.mysite.local"
          SolrUrl = $SolrUrl
          SolrRoot = $SolrRoot
          SolrService = $SolrService
          CorePrefix = $prefix



          And to install just use next task with solrParams parameter



           Install-SitecoreConfiguration @solrParams






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Feb 11 at 9:09









          Vlad IobagiuVlad Iobagiu

          13.3k21034




          13.3k21034












          • Thanks for the trigger, in my case I overlooked the SolrCorePrefix parameter in sitecore-XP0.json. This parameter is used to construct Solr.Core.Name and this is used to configure core name in Sitecore.

            – Joost
            Feb 11 at 9:18

















          • Thanks for the trigger, in my case I overlooked the SolrCorePrefix parameter in sitecore-XP0.json. This parameter is used to construct Solr.Core.Name and this is used to configure core name in Sitecore.

            – Joost
            Feb 11 at 9:18
















          Thanks for the trigger, in my case I overlooked the SolrCorePrefix parameter in sitecore-XP0.json. This parameter is used to construct Solr.Core.Name and this is used to configure core name in Sitecore.

          – Joost
          Feb 11 at 9:18





          Thanks for the trigger, in my case I overlooked the SolrCorePrefix parameter in sitecore-XP0.json. This parameter is used to construct Solr.Core.Name and this is used to configure core name in Sitecore.

          – Joost
          Feb 11 at 9:18

















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Sitecore Stack Exchange!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsitecore.stackexchange.com%2fquestions%2f16650%2fsif-parameter-that-determines-solr-core-prefix%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown






          Popular posts from this blog

          Peggy Mitchell

          Palaiologos

          The Forum (Inglewood, California)