sharepoint 2016 admin not working

Mohammad Qasim 576 Reputation points
2021-06-23T12:17:50.57+00:00

Greetings,

unable to load Sharepoint admin giving below error

Note: i have added password in advance setting. All teamsites and infact all sites are runing except admin panel sharepoint 2016.

Solution required: How can i resolve it.

108537-admin.png

SharePoint Server Development
SharePoint Server Development
SharePoint Server: A family of Microsoft on-premises document management and storage systems.Development: The process of researching, productizing, and refining new or existing technologies.
1,597 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Echo Du_MSFT 17,141 Reputation points
    2021-06-24T02:15:02.3+00:00

    Hello @Mohammad Qasim ,

    Please perform the following troubleshooting:

    1.Check whether the "SharePoint Central Administration v4" Application Pool is started

    108729-5.png

    2.Check whether the Central Administration service is in disabled state:

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

    If returns "Disabled" as Central Administration Service Status. Lets start the service:

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

    Wait till it comes to "Online" Status.

    write-host $CA.status  
    

    108784-6.png

    3.If you still cannot display the page, please check ULS logs and Event logs to get detailed error message

    Thanks,
    Echo Du

    ===========================

    If an Answer is helpful, please click "Accept Answer" and upvote it.
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    1 person found this answer helpful.