bonjour
je viens d'installer kerberos en utilisat ce tuto https://help.ubuntu.com/lts/serverguide/kerberos.html.
j'ai créé un nouvelle administrateur
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
sudo kadmin.local
Authenticating as principal root/admin@TOTO with password.
kadmin.local:  addprinc harvey/admin
WARNING: no policy specified for harvey/admin@TOTO; defaulting to no policy
Enter password for principal "harvey/admin@TOTO":
Re-enter password for principal "harvey/admin@TOTO":
Principal "harvey/admin@TOTO" created.
kadmin.local:  quit
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
sudo nano /etc/krb5kdc/kadm5.acl
# This file Is the access control list for krb5 administration.
# When this file is edited run /etc/init.d/krb5-admin-server restart to activate
# One common way to set up Kerberos administration is to allow any principal
# ending in /admin  is given full administrative rights.
# To enable this, uncomment the following line:
# */admin *
 
harvey/admin@TOTO        *
apres redemarrage de krb5-admin-server, quand je fais un kinit harvey/admin
j'ai l'erreur suivante:
Code : Sélectionner tout - Visualiser dans une fenêtre à part
kinit: Client Not found in Kerberos database while getting initial credentials
mais quand je fais un list_principals
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
kadmin.local:  list_principals
K/M@TOTO
harvey/admin@TOTO
kadmin/admin@TOTO
kadmin/changepw@TOTO
kadmin/ha04vmlx.TOTO@TOTO
kiprop/ha04vmlx.TOTO@TOTO
krbtgt/TOTO@TOTO
kadmin.local:  quit
comment puis je corriger cette erreur?