Difference between revisions of "Active Directory CentOS"

From UVOO Tech Wiki
Jump to navigation Jump to search
Line 11: Line 11:
 
realm  discover $ad_domain
 
realm  discover $ad_domain
 
echo $ad_userpass | realm join $ad_domain -U $ad_username
 
echo $ad_userpass | realm join $ad_domain -U $ad_username
sudo authselect select sssd
+
# sudo authselect select sssd
 
sudo authselect select sssd with-mkhomedir
 
sudo authselect select sssd with-mkhomedir
 
sudo systemctl restart sssd
 
sudo systemctl restart sssd

Revision as of 20:37, 2 February 2021

https://computingforgeeks.com/join-centos-rhel-system-to-active-directory-domain/

#!/usr/bin/env bash
set -e
ad_username=myuser
ad_userpass=mypass
ad_domain=example.com

sudo dnf install -y realmd sssd oddjob oddjob-mkhomedir adcli samba-common samba-common-tools krb5-workstation authselect-compat
realm  discover $ad_domain
echo $ad_userpass | realm join $ad_domain -U $ad_username
# sudo authselect select sssd
sudo authselect select sssd with-mkhomedir
sudo systemctl restart sssd
systemctl status sssd
# realm deny --all
realm permit -g 'MyAdministratorsGroup'