“Internet Explorer cannot display the webpage” on Accessing SharePoint Central Admin

Problem: SharePoint 2010 central administration site stopped working after a reboot and gave “Internet Explorer cannot display the webpage” on trying to access!

sharepoint 2010 central administration internet explorer cannot display the webpage

Troubleshooting:

SharePoint central admin page cannot display the webpage error could be caused since Central Administration service is in the disabled state! Let’s troubleshoot by checking Central Administration service status with PowerShell:

$CA = Get-SPServiceInstance | Where-Object {$_.TypeName -eq 'Central Administration'}
write-host $CA.status 

Got “Disabled” as Central Administration Service Status! No issues, Lets start the service:

Get-SPServiceInstance | Where-Object {$_.TypeName -eq 'Central Administration'} |  Start-SPServiceInstance -Confirm

Wait till it comes to “Online” Status. That’s all! We’ve fixed SharePoint 2010 central administration page cannot be displayed issue.

sharepoint central administration cannot display webpage

Salaudeen Rajack

Salaudeen Rajack - SharePoint Expert with Two decades of SharePoint Experience. Love to Share my knowledge and experience with the SharePoint community, through real-time articles!

Leave a Reply

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