Here’s the command to check if instance is domain joined.
realm discover domain.com |
To check if AD user is working.
id user@ad.example.com |
To check if AD group is working.
getent group ad-group |
cloud engineer
Here’s the command to check if instance is domain joined.
realm discover domain.com |
realm discover domain.com
To check if AD user is working.
id user@ad.example.com |
id user@ad.example.com
To check if AD group is working.
getent group ad-group |
getent group ad-group
Here’s how to get a list of certificates in AWS Certificate Manager.
aws acm list-certificates \ --profile default \ --region us-east-1 \ --output text \ --query 'CertificateSummaryList[*].{ARN:CertificateArn,Domain:DomainName}' |
aws acm list-certificates \ --profile default \ --region us-east-1 \ --output text \ --query 'CertificateSummaryList[*].{ARN:CertificateArn,Domain:DomainName}'
Here’s how to unjoin or leave the domain via SSSD.
realm leave domain.com |
realm leave domain.com