Citrix SSL Error 61 – “GlobalSign Root CA”

When using VDI from NetScaler server html, after open a ica file(Citrix ICA Setting file for icaclient) by Citrix Workspace, an error dialog popup:



You have not chosen to trust “GlobalSign Root CA”, the issuer of the server;s security certificate (SSL error 61)



The problem is that the cert is not in the plugin directory that ICAClient uses. So the solution is to get it and put it in the correct place.

Firefox  Preferences > Advanced > Certificates > View Certificates

Scroll down and click on “GlobalSign Root CA” (under GlobalSign nv-sa), and then press Export.

Save it somewhere.

Then copy it into the correct directory.

sudo cp ~/tmp/cert/GlobalSignRootCA.crt /opt/Citrix/ICAClient/keystore/cacerts/

Some certifiate files in ICAClients‘ directory are not extended as .crt, but as .pem, so, transer .crt to .pem by openssl

/opt/Citrix/ICAClient/keystore/cacerts$ sudo openssl x509 -in GlobalSignRootCA.crt -out GlobalSignRootCA.pem

Then reopen the ica file, problem was fixed.

原文地址:https://www.cnblogs.com/kozmers/p/12346751.html

时间: 2024-10-12 03:05:01

Citrix SSL Error 61 – “GlobalSign Root CA”的相关文章

https学习笔记三----OpenSSL生成root CA及签发证书

在https学习笔记二,已经弄清了数字证书的概念,组成和在https连接过程中,客户端是如何验证服务器端的证书的.这一章,主要介绍下如何使用openssl库来创建key file,以及生成root CA及签发子证书.学习主要参考官方文档:https://www.feistyduck.com/library/openssl-cookbook/online/ch-openssl.html# 一.openssl 简介 openssl 是目前最流行的 SSL 密码库工具,其提供了一个通用.健壮.功能完备

[ERROR] error: error while loading <root>, error in opening zip file error: scala.reflect.internal.MissingRequirementError: object scala.runtime in compiler mirror not found.

在家编译一个Apache的开源项目,在编译时遇到错误如下: error: error while loading <root>, error in opening zip file [ERROR] error: error while loading <root>, error in opening zip file error: scala.reflect.internal.MissingRequirementError: object scala.runtime in comp

Jmeter之root ca certificate 问题

在配置jmeter http代理服务器时,本机及手机都已经安装了root ca certificate,为什么启动的时候还是提示我缺少证书呢

在阿里云linux下使用SVN访问VisualSVN出错:SSL handshake failed: SSL error: Key usage violation in certificate has been detected

Subversion clients receive the following error message when attempting to connect to VisualSVN Server: svn: OPTIONS of 'https://server.domain.local/svn/repo': SSL handshake failed: SSL error:Key usage violation in certificate has been detected. (http

解决Linux下Svn检出Windows SVN服务器上项目SSL handshake failed: SSL error: Key usage violation in certificate has been detected.

在Linux上检出windows SVN服务器上项目时出现了SSL handshake failed: SSL error: Key usage violation in certificate has been detected.的错误. 最后通过从网上检索找到了一个答案: 可以同时解决掉在Ubuntu上和CentOS上检出失败的问题. 在Windows注册表中加入注册项: 32位机器: [HKEY_LOCAL_MACHINE\SOFTWARE\VisualSVN\VisualSVN Serv

Svn ssl error Tls warning

Ubuntu 10.04开发机check svn服务器失败 失败信息: SSL handshake failed: SSL error: A TLS warning alert has been received. 解决办法: 把域名换成IP,svn co https://1.2.3.4/my-repo-name 或者svn switch --relocate https://foo.com/my-repo-name https://1.2.3.4/my-repo-name(来自stack ov

SSL及使用openssl实现CA

TLS如何实现各种功能?数据如何加密在网络上传输? 网景(Netscape)公司在应用层和传输层加入了半层,把这个半层称之为SSL,SSL不是软件,可以理解是一个库,当http交给tcp层之前先通过ssl进行封装,所以http就成为https,ftp变为ftps等.SSL有三个版本V1.V2.V3,目前只有V2.V3在用. 由于SSL是私有的,所以国际化组织开发出TLS(安全传输协议)用于在两个通信之间提供保密性和数据完整性.TLSv1=SSLv3 SSL协议结构 SSL协议本身可以分为两层:底

Root CA certificate:ApacheJMeterTemporaryRootCA.crt created in JMeter bin directory

今天学习jmeter录制,在点击start之后弹出: 且在jmeter安装目录里确实生成了ApacheJMeterTemporaryRootCA.crt文件 上网查询官方文档http://120.52.72.49/jmeter.apache.org/c3pr90ntcsf0/usermanual/jmeter_proxy_step_by_step.pdf, 说是要先安装证书http://jmeter.apache.org/usermanual/component_reference.html#H

nodejs SSL Error: CERT_UNTRUSTED while using npm command 错误

SSH 使用错误,其实我们关掉HTTPS就好了 npm config set strict-ssl false 或者 npm config set registry=”http://registry.npmjs.org/”