Posts

Horizon Recording Server Agent Installation on Linux When using tar.gz on distros such as Ubuntu, download the agent and extract it. I suggest to move the install archive to a folder before extracting it 1. Extract: $ tar zxvf Horizon.Recording.Linux.Agent-1.15.0.422.tar.gz 2. Install: $  sudo ./install.sh -u https://recording.euclab.local:9443 -n <admin-user> -p <password> -s <recording server cert thumbprint> 3. Monitor: $ tail -f /var/log//omnissa/horizonrecording/ServiceLogging.log Demo of the expected behavior:
How to access Omnissa's KCD Client tool on Unified Access Gateway To access the Omnissa-KCD-Client tool, you first need to enter the system’s shell either directly on the Linux machine or remotely via SSH using a tool such as PuTTY.  Next, follow the short video below, i've also included the commands below. docker ps docker exec -it {ContainerID} /bin/bash export KRB5CCNAME="MEMORY:" export KRB5_CONFIG="/opt/omnissa/seg/config/kerberos/krb5.conf" cp /opt/omnissa/seg/config/kerberos/kcd-client.conf /opt/omnissa/seg/kerberos-client/kcdclient.conf sed -i 's/log_level 2/log_level 4/' /opt/omnissa/seg/kerberos-client/kcdclient.conf cd /opt/omnissa/seg/kerberos-client/ You can use this syntax for testing KCD: ./Omnissa-KCD-Client -m kerberostest -n HTTP/{Your-SPN} -w {Your-KCD-User}@{your.domain}@YOUR.DOMAIN -u "{your-user}@YOUR.DOMAIN" -p {password} This was demonstrad on UAG version 2503. Good luck! :)