Unable to find plugins in list of available plugins in jenkins

后端 未结 27 1331
无人及你
无人及你 2020-12-04 21:30

I have installed Jenkins by deploying its WAR file to Tomcat. On typing

http://localhost:8080/jenkins

In browser

27条回答
  •  萌比男神i
    2020-12-04 22:08

    For those like me who use Jenkins with Docker with a JDK8u60+ version, you need to remove the MD5 hash in JDK_HOME/jre/lib/security/java.security to make it works:

    jdk.certpath.disabledAlgorithms=MD2, MD5, RSA keySize < 1024
    
    To
    
    jdk.certpath.disabledAlgorithms=MD2, RSA keySize < 1024
    

    This should be a temporary workaround

提交回复
热议问题