- You need to create domain accounts for Searching and Crawling. Using the Farm Account (or default accounts) is not recommended. In our example we will use “spSearch” and “spCrawl”. Use complex passwords! These domains accounts should only be standard users, no administrative privileges should be applied.
- Log into the SharePoint Central Administration Page
- CA > Security > General Security > Configure Managed Accounts > Register Managed Account.
- Enter in “domainspSearch” and the password you chose
- Click “OK”.
- You should now see this account in the Managed Account list
- CA > System Settings > Servers > Manage Services on Server > SharePoint Foundation Search > Start.
- Service Account -> “DomainspSearch”
- Content Access Account (Crawl) -> “DomainspCrawl” and the password you chose
- Leave everything else as defaults (you can change the Database Name if you are having issues)
- CA > Security > General Security > Configure service accounts
- Choose “Windows Service -> SharePoint Foundation Service”
- Choose “DomainspSearch” for the account selection
- Click “OK”
- CA > Application Management > Manage Content Databases
- This is important! For each site you want automatically crawled, you must assign the search server.
- In the top right corner under “Web Application”, choose the web applications to be crawled, one at a time followed by a click on the “database name” column once they are loaded.
- In the profile page, change the “Search Server” and “Preferred Server for Timer Jobs” to your server.
- Click “OK”
- Repeat for any other Website Applications you wish crawled
- CA > Monitoring > Timer Jobs > Review Timer Jobs > SharePoint Foundation Search Refresh
- Choose “Run Now” to begin indexing your web applications (sites)
- This can take several hours depending on the size of your database(s). Please be patient.
- If you’re feeling eager and have a background in SQL, you can use the SQL Management Studio to check the progress. If you are not familiar with SQL, don’t be a hero … this can cause major damage.
- Load the SQL Management Studio
- Expand the search database created in the earlier steps (typically WSS_Search_%hostname%)
- Right click the database -> new query
- Enter in the following Query:select * from msscrawlhostlist (execute)
You will be presented with a table of results including a column for Hostname and SuccessCount.
SuccessCount increases as it indexes each page.
- You can also lookup the crawl summary with:select * from MSSCrawlURLLog
- And should there be any error codes in the MSSCrawlURLog, they can be referenced with:select * from MSSCrawlErrorList where ErrorID = ‘<ERRORID>’