Run the service Fabric application under the managed group account (gMSA) account

I am testing using a gMSA account to run an SF application instead of NETWORKSERVICE.

Following the instructions from here: https://docs.microsoft.com/en-us/azure/service-fabric/service-fabric-application-runas-security

  • Created gMSA on a domain controller using the powershell cmdlet:

    New-ADServiceAccount -name MySA$ -DnsHostName MySA.contoso -ServicePrincipalNames http/MySA.contoso -PrincipalsAllowedToRetrieveManagedPassword Node0Machine$, Node1Machine$, Node2Machine$
    
  • Install-AdServiceAccount returned an "unspecified error" on each of the nodes, however Test-AdServiceAccount returns true for MySA $ (when running powershell as a domain user)

  • ApplicationManifest.xml has the following changes:

    <Principals>
        <Users>
          <User Name="MySA" AccountType="ManagedServiceAccount" AccountName="Contoso\MySA$"/>
    </Users>
    </Principals>
    <Policies>
        <SecurityAccessPolicies>
          <SecurityAccessPolicy ResourceRef="ConfigurationEncipherment" PrincipalRef="MySa" ResourceType="Certificate" />
        </SecurityAccessPolicies>
    <DefaultRunAsPolicy UserRef="MySA"/>
    </Policies>
    

The Fabric service explorer shows the following error for each service:

Error event: SourceId='System.Hosting', Property='CodePackageActivation:Code:SetupEntryPoint'.
There was an error during CodePackage activation.Service host failed to activate. Error:0x8007052e

gMSA ( X509 ). gMSA , - (, "WindowsIdentities" - , )

"security": {
    "WindowsIdentities": {
            "ClustergMSAIdentity": "MySA$@contoso",
            "ClusterSPN": "http/MySa.contoso",
            "ClientIdentities": [
                {
                    "Identity": "contoso\\MySA$",
                    "IsAdmin": true
                }
            ]
   },
+4
1

Error:0x8007052e .

Windows Windows

10 , . (gMSA).

:

:

  • , .

  • node, .

[...]

( /). (, ) .


, gMSA ServiceFabricAdministrators, , , , , " "

0

Source: https://habr.com/ru/post/1692094/


All Articles