Quantcast
Channel: SharePoint Diary
Viewing all articles
Browse latest Browse all 1058

"Internet Explorer cannot display the webpage" on Accessing SharePoint Central Admin

$
0
0
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 displayed error could be caused since Central Administration service is in disabled state! Lets 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


Viewing all articles
Browse latest Browse all 1058

Trending Articles