Forum Discussion
jcmfxt
Jun 01, 2022Copper Contributor
Help VMware esxi vm High CPU running SharePoint server 2019
Environment: VMware esxi vm running SharePoint server 2019 on Server 2019. Issue: We had to reboot the server while working another issue. Since about that time the VM CPU usage has been way up. It ...
jcmfxt
Jun 02, 2022Copper Contributor
I ran the cliconfg and there wasn't any aliases. I went to service applications and there's not an SP listed.
mr_w1nst0n
Jun 03, 2022Iron Contributor
the list you provided shows all the SP services configured in your farm (and relative proxy)
You have to click on each SP service (eg. App Management Service) and then select Properties on the top bar navigation. Do it only for the service (1st line) and not for the proxy (2nd line)
A pop up should appear showing the configuration of the service itself
From there you should be able to see the name of the Database and the SQL Instance.
Check if there is any discrepancies based on what you mention about the SQL Instance clone.
Side Note: You can also check if any SP major issue by analyzing the ULS logs. There is a diagnostic tool provided by MSFT for that: View diagnostic logs in SharePoint Server - SharePoint Server | Microsoft Docs
- jcmfxtJun 06, 2022Copper ContributorI wish I knew what I was looking at .. I've read somewhere to look at the Correlation ID but the script never finishes.
eg: Get-SPLogEvent | ?{$_.Correlation -eq "6922c76b-32f7-4e2e-af96-fbda88a77fa5"}
I did use PowerShell to view to 'critical' errors. Here's a few of the errors:
-w3wp.exe: All query processing components are in 'Failed' status.
-Unknown SQL Exception 18452 occurred. Additional error information from SQL Server is included below. Login failed. The login is from an untrusted domain and cannot be used with Windows authentication.
-UsageAnalyticsTimerJob-xxxxxxxxxxxxxxxxx : Failed to retrieve Analysis Engine Service.
-The Execute method of job definition Microsoft.Office.Server.UserProfiles.FeedCacheRepopulationJob (ID xxxxxxxxxxxxxxxxxx) threw an exception. More information is included below. There are no addresses available for this application.. (Correlation=xxxxxxxxxxxxxxxxxxx)- mr_w1nst0nJun 06, 2022Iron Contributor
It seems you have multiple issues:
- The Search Service seems to be in error state (w3wp error message)
- You have login issues in SQL instance (you have to debug using SQL logs to see which is the exact account/s generating issues and where it is used in SharePoint)
- The UsageAnalyticsTimerJob is correlated with the Search Service error state
- The User Profile service error could be caused by the Distributed Cache Service. The log does not says much, you have to check deeper in the ULS logs
- jcmfxtJun 07, 2022Copper Contributor