You can use the same account for authentication on the Master server and Secondary master servers. To do so, you must create a keytab file containing the service principal name (SPN) for each of these servers.
To create a keytab file:
control-<your name>
in the Active Directory Users and Computers snap-in.control-<your name>
. To do so, run the following command in the command line:C:\Windows\system32\ktpass.exe -princ HTTP/<Master server name>@<realm uppercase Active Directory domain name> -mapuser control-<your name>@<realm uppercase Active Directory domain name> -crypto <encryption type, RC4-HMAC-NT is recommended> -ptype KRB5_NT_PRINCIPAL -pass <user password of control-<your name>> -out C:\control-tmp1-<your name>.keytab
The Master server SPN will be added to the created keytab file.
C:\Windows\system32\ktpass.exe -princ HTTP/<Secondary master server name>@<realm uppercase Active Directory domain name> -mapuser control-<your name>@<realm uppercase Active Directory domain name> -crypto <encryption type, RC4-HMAC-NT is recommended> -ptype KRB5_NT_PRINCIPAL -pass <user password of control-<your name>> -in C:\control-tmp1-<your name>.keytab -out C:\control-tmp2-<your name>.keytab -setupn -setpass
If necessary, repeat this step for each Secondary master server for which you want to add an entry to the keytab file.
The keytab file will be created.
Page top