46

I am trying to run Citrix receiver on the Xenial version of Ubuntu, but I am getting this error below

ERROR:

Cannot connect to "0.0.0.2 - Remote Desktop Connection"

Unknown error 1000119. Verify your connection settings and try again.

What should I do?

7 Answers7

93

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.

Kevin
  • 103
validom
  • 1,031
5

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.

Peter
  • 51
2

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.

2

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.

1

I had the same problem. For me the solution was to put in

8.8.8.8,4.4.4.4 

as DNS in the network manager

Zanna
  • 70,465
r3ev
  • 21
  • Upvoting as this error message was a DNS issue for me too (the certificates above didn't solve it). – moo Apr 07 '20 at 08:34
0

I solved this error by use the following Steps

cd /opt/Citrix/ICAClient/keystore/cacerts/
wget https://dl.cacerts.digicert.com/DigiCertHighAssuranceEVRootCA.crt

curl https://support.comodo.com/index.php?/Knowledgebase/Article/GetAttachment/969/821026 > comodorsacertificationauthority.crt
exit

I get solution from: https://stackoverflow.com/questions/53062679/cannot-connect-to-0-0-0-2-published-app-name-in-citrix-receiver-ica-client

Pilot6
  • 90,100
  • 91
  • 213
  • 324
Ahmed
  • 1
0

I was not able to permanently solve the issue with the solutions here. I found a suggestion here which solved my problem.

If you don't know the URL the app asks you for; it is the URL of your organisation's "Citrix storefront" (where you download your .ica files)

Agade
  • 101