A family of System Center products that provide infrastructure monitoring, help ensure the predictable performance and availability of vital applications, and offer comprehensive monitoring for datacenters and cloud, both private and public.
It seems you are encountering a 500 Internal Server Error when trying to use Windows Authentication in the SCOM web console. Here are some steps you can take to troubleshoot and potentially resolve the issue:
- Verify SPN Registration: Ensure that the Service Principal Name (SPN) is correctly registered for the gMSA account. You can check the SPN registration by running the following command:
Make sure that the SPNs for both NetBIOS and FQDN are registered correctly.setspn -L <gMSA-account> - Check Application Pool Identity: Confirm that the Operations Manager application pool is indeed running under the gMSA account. You can do this in IIS Manager by checking the application pool settings.
- Delegation Configuration: Double-check the constrained delegation settings for the gMSA account. Ensure that it is allowed to delegate to the
MSOMSdkSvcservice. You might need to verify the settings in Active Directory Users and Computers. - IIS Settings: Since you have already disabled Kernel-mode authentication, ensure that Windows Authentication is properly configured in IIS. You can do this by navigating to the Authentication settings in IIS Manager and ensuring that Windows Authentication is enabled and configured correctly.
- Event Logs: Check the Windows Event Viewer for any related error messages that might provide more context on the 500 error. Look specifically under the Application and System logs.
- Browser Cache: Sometimes, browser caching issues can cause unexpected behavior. Clear your browser cache or try accessing the web console from a different browser or in incognito mode.
- Firewall and Network Issues: Ensure that there are no firewall rules or network issues that might be blocking the communication between the web console and the SCOM server.
If you have gone through these steps and the issue persists, you may want to consult the official documentation or reach out to Microsoft support for further assistance.
References: