Share via


MIM2016 Troubleshooting: MIM Portal Performance Issue


Originally posted at: MIM2016 Troubleshooting: MIM Portal Performance Issue @ IS4U Blog


Issue

After experiencing a decrease in MIM portal responsiveness after installation, I checked the server resources to see following memory consumption: http://wimbeck.be/wp-content/uploads/2016/03/RAM.png


Solution

The solution to this problem is quite simple. Since MIM is not using any search capabilities of the underlying SharePoint engine, we can just remove the search component. You can do this either via the Central Administration or via PowerShell.

$spapp = Get-SPServiceApplication -Name "Search Service Application"
Remove-SPServiceApplication $spapp -RemoveData

 http://wimbeck.be/wp-content/uploads/2016/03/SearchApp.png


Related resources