An error occurred during installation: No such plugin: cloudbees-folder
Asked Answered
U

12

8

An error occurred during installation: No such plugin: cloudbees-folder (While installing Jenkins suggested plugins getting the error on windows 10)

Umber answered 19/11, 2018 at 7:2 Comment(1)
always look for official images mentioned here jenkins.io/downloadCamarillo
V
13

This work for me: http://localhost:8080/restart

OR service jenkins restart on my Ubuntu

Vander answered 19/12, 2019 at 20:34 Comment(4)
I tried that, but got this message: Jenkins can't restart itself under the current configuration.Transmission
can you share your working environment docker/ubuntu/windows/mac ?Vander
Windows. I figured out how to fix the issue for me though (see my answer above)Transmission
thanks it works for me : sudo service jenkins restartSclerotic
P
3

For Windows users, restarting the Jenkins service will resolve the issue.

For that Open Task Manager (Ctrl+Sft+Esc) -> Services -> right-click on Jenkins service and choose the option restart

enter image description here

Paper answered 18/5, 2020 at 17:25 Comment(0)
C
2

If you are using the Jenkin's image in Docker if you see this error just try to execute the below command: http://localhost:8080/safeRestart you will get a prompt do you need to restart don't click on yes just ignore then start creating your jobs by clicking on NEW, it's just a plugin

Cornia answered 31/5, 2021 at 5:41 Comment(0)
D
2

As a comment suggested: always look for official images mentioned here jenkins.io/download.

I faced the same issue when using the docker image jenkins:2.60.3, it turned out that this image isn't an official one, the official images look like jenkins/jenkins:<something>, you can find them here: https://hub.docker.com/r/jenkins/jenkins

Dragonet answered 29/12, 2021 at 9:11 Comment(0)
B
1

For the docker version

1-open the browser

2- write your_ip_address:your_docker_port/restart

Note: you must have the password generated by your Jenkins server if you do have click here

Bolognese answered 23/7, 2021 at 14:51 Comment(0)
T
0

If you are behind a firewall (local or through a VPN), there's a good chance that it's failing to download files correctly.

Try installing from another location or disabling the VPN. Or request your network admin to allow the connections.

When I initially started my server while on a VPN there were two connection failure stack traces.

Transmission answered 14/1, 2020 at 18:47 Comment(0)
R
0

I am running Jenkins on Ubuntu in AWS.

I had this initial problem after booting up the box.

Ran the following:

sudo service jenkins restart

All working for me now.

Rebak answered 6/4, 2020 at 11:59 Comment(0)
T
0

Check the Context Path in tomcat for Jenkins that you have given during deployment and then restart/safeRestart from that path.

For example: The Path in the below screenshot is "/jenkins", So the restart URL will be

http://localhost:8080/jenkins/restart OR
http://localhost:8080/jenkins/safeRestart

enter image description here

Taxiway answered 14/7, 2021 at 13:14 Comment(0)
B
0

It happened to me when I used a jenkins:2.60.3 Docker image, and it was solved when I use the jenkins/jenkins Docker image, so delete the current image and try this image:

docker run -d -p 8080:8080 -p 50000:50000 --name jenkinsContainer jenkins/jenkins
Brawl answered 22/8, 2023 at 8:22 Comment(0)
C
0

I got the same error. Issue is with in Docker, used old version. Delete the old version from Docker and reinstall the new version of Jenkins. Use Docker pull command: docker pull jenkins/jenkins

It worked for me.

Caracal answered 6/6 at 12:52 Comment(0)
U
-1

I just Unchecked all the plugins and clicked on the install button. After that, it successfully takes me to the inside.

Umber answered 19/11, 2018 at 8:30 Comment(0)
E
-3

Just restart the machine. It successfully worked for me.

Eldred answered 23/4, 2021 at 0:23 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.