Use Active Direcotry from user management in linux machine
Mis a jours le 12 Apr 2022 à 13:19 · 125 mots · Lecture en 1 minute
Step to setup
ssh -i youKey root@machineIP
- install required packages
sudo yum -y update
sudo yum -y install sssd realmd krb5-workstation samba-common-tools
- Setup DNS servers - add the two DNS address on Directory details in web console
change /etc/resolv.conf
nameserver //DNS address 1 of Directory
nameserver //DNS address 2 of Directory
- join the domain
sudo realm join -U Administrator@my.domaine.name my.domaine.name --verbose
Set the SSH service to allow password authentication
- change /etc/ssh/sshd_config
PasswordAuthentication yes
- Add the following to the bottom of the sudoers file and save it
sudo nano /etc/sudoers
#Add the "Delegated Administrators" group from the my.domaine.name domain.
%AWS\ Delegated\ Administrators@my.domaine.name ALL=(ALL:ALL) ALL
- restart the sssd service
sudo systemctl restart sshd.service
sudo systemctl restart sssd.service
- Disconnect and Reconnect using AD credentials
ssh -l Administrator@my.domaine.name machineIP
L'auteur: Guillaume Moulard
Mon premier code était sur un ZX81... Mes derniers emois sont le week-end pour mes Raspberrys PI et la semaine pour les techno du Cloud. www.moulard.org
Vous avez vu une erreur ? Quelque chose ne va pas ? Vous pouvez contribuer à cette page sur GitHub ou laisser un commentaire en dessous. Merci d'être passé par là :)