On Friday, August 5, 2022 at 9:00:12 AM UTC-6 Sunil wrote:
> These are the steps I followed as per the documentation: > wget -O /etc/yum.repos.d/jenkins.repo \ > https://pkg.jenkins.io/redhat-stable/jenkins.repo > rpm --import https://pkg.jenkins.io/redhat-stable/jenkins.io.key > yum upgrade > # Add required dependencies for the jenkins package > yum install java-11-openjdk > yum install jenkins > systemctl daemon-reload > > systemctl enable jenkins > systemctl start jenkins > systemctl status jenkins > > Is there a way to upload plugins through the console? I am able to > download the plugins using wget. Is there a way for me to install the > downloaded plugin? > https://stackoverflow.com/questions/19540289/how-to-fix-the-java-security-cert-certificateexception-no-subject-alternative suggests that exception is related to SSL certificates. Maybe the yum upgrade needs to be followed by a restart of the computer? https://blog.devgenius.io/rhel-centos-7-fix-for-lets-encrypt-change-8af2de587fe4 discusses more about certificate updates and CentOS 7. Be sure that the ca-certificates package is installed and is the most recent release. The Jenkins plugin installation manager tool (https://github.com/jenkinsci/plugin-installation-manager-tool/) can download plugins and their dependencies from a command line. However, since it is a Java tool and you're seeing a Java exception, I suspect that it will report the same exception. The plugin manager page in Jenkins will accept uploads as either files or as URLs. However, the upload page does not automatically download dependent plugins. Much better to fix whatever issues causes your computer to not allow Java to access SSL secured web sites. -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-users+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-users/674e0657-ee8f-4993-a79b-bede98a807c9n%40googlegroups.com.