To support True SSO on a RHEL or Rocky Linux 9.x/8.x desktop, you must first integrate the base virtual machine (VM) with your Active Directory (AD) domain. Then you must modify certain configurations on the system to support the True SSO feature.
Some examples in the procedure use placeholder values to represent entities in your network configuration, such as the DNS name of your AD domain. Replace the placeholder values with information specific to your configuration, as described in the following table.
| Placeholder Value | Description |
|---|---|
| mydomain.com | DNS name of your AD domain |
| MYDOMAIN.COM | DNS name of your AD domain, in all capital letters |
| MYDOMAIN | Name of your NetBIOS domain |
| dnsserver.mydomain.com | Name of your DNS server |
Prerequisites
-
Configure True SSO for Omnissa Access and Horizon Connection Server.
-
Verify that the Active Directory (AD) server is resolvable by DNS on the base VM.
-
Configure the host name of the VM.
-
Configure the Network Time Protocol (NTP) on the VM.
-
Get a root Certificate Authority (CA) certificate and save it to
/tmp/certificate.ceron the VM. See How to Export Root Certification Authority Certificate.If a subordinate CA is also an issuing authority, then get the entire chain of root and subordinate CA certificates and save it to
/tmp/certificate.ceron the VM. -
To use True SSO in FIPS mode, ensure that you have completed all the steps described in Configure a FIPS-compliant Linux Virtual Machine. You must add the trusted CA certificate for BlastServer to 'rui.crt' and add the key paired with
rui.crttorui.key.
Procedure
-
On the base VM, verify the network connection to Active Directory.
sudo realm discover *mydomain.com* -
Install the required dependency packages.
sudo yum install oddjob oddjob-mkhomedir sssd adcli samba-common-tools -
Join the AD domain.
sudo realm join --verbose *mydomain.com* -U administrator -
Install the root CA certificate or certificate chain.
-
Locate the root CA certificate or certificate chain that you downloaded, and transfer it to a PEM file.
sudo openssl x509 -inform der -in /tmp/certificate.cer -out /tmp/certificate.pem -
Copy the certificate to the
/etc/sssd/pki/sssd_auth_ca_db.pemfile.sudo cp /tmp/certificate.pem /etc/sssd/pki/sssd_auth_ca_db.pem
-
-
Modify the
/etc/sssd/sssd.confconfiguration file, as shown in the following example. -
Modify the
/etc/krb5.confconfiguration file by setting the mode equal to644.Note: If you do not modify
/etc/krb5.confas specified, the True SSO feature might not work. -
(RHEL or Rocky Linux 9.x) To ensure that TrueSSO works properly with instant-clone desktop pools, modify the following configurations.
Note: You can skip these configurations if you are not using the VM for an instant-clone desktop pool.
-
Run the command to explicitly allow the SHA-1 cryptographic policy.
sudo update-crypto-policies --set DEFAULT:SHA1 -
Locate the root CA certificate or certificate chain that you downloaded earlier, and copy it to
/etc/pki/ca-trust/source/anchors/ca_cert.pem. Then use theupdate-ca-trustcommand to enable legacy applications to read the trusted certificates.sudo cp /tmp/certificate.pem /etc/pki/ca-trust/source/anchors/ca_cert.pem sudo update-ca-trust -
Modify the
/etc/krb5.conffile, as shown in the following example.[realms] MYDOMAIN.COM = { kdc = dnsserver.mydomain.com admin_server = dnsserver.mydomain.com pkinit_anchors = DIR:/etc/pki/ca-trust/source/anchors pkinit_kdc_hostname = dnsserver.mydomain.com pkinit_eku_checking = kpServerAuth } [domain_realm] .mydomain.com = MYDOMAIN.COM mydomain.com = MYDOMAIN.COM
-
-
Install the Horizon Agent package, with True SSO enabled.
sudo ./install_viewagent.sh -T yes -
Modify the
-custom.confconfiguration file so that it includes the following line.NetbiosDomain = *MYDOMAIN* -
Restart the VM and log back in.
Was this page helpful?