Domanda

I have an intranet farm with 2 application, 3 WFE servers there is user profile service running in 3 servers one app and in 2 wfe servers.

In central administraton>Manage service applications user profile service application status showing starting and I cannot create new synchronization connections. enter image description here

enter image description here

È stato utile?

Soluzione

Run the following:

$sa = Get-SPServiceApplication | ?{$_.TypeName -match 'Profile'}
$sa.Status = 'Online'
$sa.Update()

Altri suggerimenti

There is a really fantastic article written by harbar for sp 2010 which applies even to 2016 on this topic . Go through the list of steps in it and it will almost always fix the issue for you - http://www.harbar.net/articles/sp2010ups2.aspx

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a sharepoint.stackexchange
scroll top