Citrix receiver error 1000119
Solution 1:
Remove cacerts
and link to /etc/ssl/certs
by the following commands
cd /opt/Citrix/ICAClient/keystore/
sudo rm -rf cacerts
sudo ln -s /etc/ssl/certs cacerts
Source: comment by bdetweiler which helped me.
Solution 2:
I got it. Linking the system's certificates to the ICA's also works:
sudo ln -s /etc/ssl/certs/* /opt/Citrix/ICAClient/keystore/cacerts
with ignoring the warnings regarding duplicates.
Solution 3:
I had the equivalent problem. The best solution I was able to find at the moment in Xenial was to downgrade to the 13.2 x64 version of Citrix Receiver and be sure to follow the standard procedures with respect to linking certificates, etc.
Solution 4:
I solved this by getting the root cert. In my case it was Verisign, so I downloaded the root 10 cert from https://www.symantec.com/theme/roots
Get root 10. It'll be a file called verisign-universal-root-certification-authority-en.pem
sudo copy it into /opt/Citrix/ICAClient/keystore/cacerts
It worked straight after.