How to create a Search Center Site Collection and enable crawling of your content in SharePoint Server
APPLIES TO: 2013 2016 2019 Subscription Edition SharePoint in Microsoft 365
In this article, you'll learn:
How to create a Search Center Site Collection
To create a Search Center Site Collection, go to Central Administration --> Create site collections, and then enter details for the site collection. Here's what you have to enter:
Enter a title for the website.
Enter the website's URL.
Select 2013 for the experience version.
From the Enterprise tab, select Enterprise Search Center.
In the field Primary Site Collection Administration, enter the site administrator's user name.
Now that you have your Search Center Site Collection, you can move on to crawling content.
How to start a full crawl in Central Administration
Before you can start a full crawl in Central Administration, you have to specify the content source that you want to crawl. When you run a full crawl, all content in the content source is crawled even if that content has already been added to the search index.
In a scenario where you only have SharePoint content, you can select to crawl the Local SharePoint sites content source.
Go to Central Administration --> Manage service applications --> Search Service Application --> Content Sources.
On the Manage Content Sources page, pause on the Local SharePoint sites content source, and select Start Full Crawl from the menu.
The status of the crawl is shown in the Status column.
Refresh this page until the value in the Status column is Idle. That means that the full crawl has finished.
Optionally, you can verify that your items are added to the search index by clicking Crawl Log.
In this scenario, 157,297 items appear in the search index.
How to enable continuous crawls in Central Administration
By default, content is automatically crawled every fourth hour. But, when changes are made to your content, you probably want it to be crawled as soon as possible so that users can find it on the Search Center. Nobody wants to start a full crawl manually every time that a change is made to their content, as this is neither efficient nor practical. So, to avoid this overhead, you can enable a continuous crawl of the content source that contains your content.
Continuous crawls start automatically at 15-minute intervals. Any changes that were made to your content since the previous crawl are picked up by the crawler and added to the search index.
To enable continuous crawls:
Go to Central Administration --> Manage service applications --> Search Service Applications --> Content Sources.
On the Managed Content Sources page, click the content source for which you want to enable continuous crawl.
In this scenario, the content source is Local SharePoint sites.
Select Enable Continuous Crawls.
How to set the continuous crawl interval
The default interval for continuous crawls is 15 minutes. But, you can set shorter intervals by using Microsoft PowerShell. The following code example sets the continuous crawl interval to 1 minute.
$ssa = Get-SPEnterpriseSearchServiceApplication
$ssa.SetProperty("ContinuousCrawlInterval", 1)
So, by enabling continuous crawls, your search index is automatically updated with the latest changes. But, there are some types of changes where continuous crawls are insufficient to update the search index, for example, if you enable managed properties as refiners (we'll show you how to do this in a later article). For these changes to be updated in the search index, you have two options:
Do a full crawl.
Do something called reindexing .
The reason there are two options is because people who work with content (let's call them content managers) are not likely to have Search service application administration level rights. That is, they don't have access to Central Administration where they can start a full crawl. But, content managers are likely to have Site Owner rights, and Site Owners can do reindexing.
How to reindex a list
Here are the steps to mark a list or library for reindexing:
On your list or library, click the LIST or LIBRARY tab --> List Settings or Library Settings --> Advanced Settings.
On the Advanced Settings page, click Reindex List or Reindex Document Library.
The list will be reindexed during the next scheduled crawl.
So, overall, content managers can be happy because their content is added to the search index at short intervals, and Search service application administrators can be happy because they are not bothered by content managers constantly asking them to start a crawl.
Next article in this series
Plan to use refiners on a search results page in SharePoint Server