zoukankan      html  css  js  c++  java
  • vRO 7 添加RestHost证书报错

    报错类似的错误:

    Cannot execute request: ; java.security.cert.CertificateException: Certificates does not conform to algorithm constraintsCertificates does not conform to algorithm constraints

    Cannot execute request: DHPublicKey does not comply to algorithm constraints

    Solution:

    The java implementation on a vRA 7 appliance is no different, there are certain untrusted algorithms. Should you need to, you can enable them again.

    1. SSH to the vRA appliance using either the root account or an account capable of using sudo
    2. Navigate to the directory /usr/java/jre-vmware/lib/security
    3. Copy java.security to java.security.old (always take a backup!)
    4. Use vim to edit the java.security file
    5. Comment out the line jdk.certpath.disabledAlgorithms=MD2, RSA keySize < 1024
    6. Comment out the line jdk.tls.disabledAlgorithms=SSLv3, RC4, MD5withRSA, DH keySize < 768
    7. Save the file
    8. Restart the vRO service (service vco-server restart)
  • 相关阅读:
    ES6之模块化
    ES6之展开运算符
    ES6之解构赋值
    ES6之对象的语法糖
    ES6之函数的语法糖
    ES6之模板字符串
    Exchanger详解
    DNS解析过程
    CyclicBarrier详解
    ConuntDownLatch详解
  • 原文地址:https://www.cnblogs.com/vincenshen/p/9549156.html
Copyright © 2011-2022 走看看