Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Last revisionBoth sides next revision
vmware:heartbeat [2014/02/09 01:52] – [SetSPN Kommando bei SQLServer unter Domänenaccount] mschubivmware:heartbeat [2014/02/10 20:29] – [VMwares Workaround] mschubi
Line 66: Line 66:
 Dafür muss man den beiden Knoten in der Domäne entsprechende Rechte geben. Dafür muss man den beiden Knoten in der Domäne entsprechende Rechte geben.
  
-<nowiki>+<code text>
 "...Thank you for your patience with us. We realize that some changes will need to be made to the existing KB 2017530 - Performing a Least Privilege Installation of vCenter Server Heartbeat when protecting SQL Server. "...Thank you for your patience with us. We realize that some changes will need to be made to the existing KB 2017530 - Performing a Least Privilege Installation of vCenter Server Heartbeat when protecting SQL Server.
  
Line 87: Line 87:
          4. Assign the Allow permission for Write all properties and Apply to this object and all child objects.          4. Assign the Allow permission for Write all properties and Apply to this object and all child objects.
          5. Click OK."          5. Click OK."
-</nowiki>+</code>
  
  
 +===== der "korrekte" Weg... =====
 +
 +Mit Windows 2012 gibt es da noch ein Problem - eine etwas strengere Handhabung mit registered
 +Services. 
 +
 +Was heißt das?
 +
 +Wenn man von Knoten A auf Knoten B umschaltet, muss man den SQLService vom Knoten A deregistrieren und bei 
 +Knoten B registrieren. 
 +
 +Das führt dann zu separaten Scripten für beide Knoten:
 +
 +<file winbatch setSPN_A.bat>
 +setspn.exe -D MSSQLSvc/<FQDNCLUSTERNAME>:MSSQLSERVER <SHORT_NODE_NAME_B>
 +
 +ping -n 10 0 >NUL
 +
 +setspn.exe -a MSSQLSvc/<FQDNCLUSTERNAME>:MSSQLSERVER <SHORT_NODE_NAME_A>
 +</file>
 +
 +<file winbatch setSPN_B.bat>
 +setspn.exe -D MSSQLSvc/<FQDNCLUSTERNAME>:MSSQLSERVER <SHORT_NODE_NAME_A>
 +
 +ping -n 10 0 >NUL
 +
 +setspn.exe -a MSSQLSvc/<FQDNCLUSTERNAME>:MSSQLSERVER <SHORT_NODE_NAME_B>
 +</file>
Except where otherwise noted, content on this wiki is licensed under the following license: CC Attribution-Share Alike 4.0 International