Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
This comment has been deleted
$ sudo apt-get install jenkins
Reading package lists… Done
Building dependency tree… Done
Reading state information… Done
The following additional packages will be installed:
net-tools
The following NEW packages will be installed:
jenkins net-tools
0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
Need to get 87.6 MB/87.8 MB of archives.
After this operation, 92.1 MB of additional disk space will be used.
Do you want to continue? [Y/n] Y
Ign:1 https://pkg.jenkins.io/debian-stable binary/ jenkins 2.346.3
Ign:1 https://pkg.jenkins.io/debian-stable binary/ jenkins 2.346.3
Ign:1 https://pkg.jenkins.io/debian-stable binary/ jenkins 2.346.3
Err:1 https://pkg.jenkins.io/debian-stable binary/ jenkins 2.346.3
Cannot initiate the connection to mirrors.tuna.tsinghua.edu.cn:443 (2402:f000:1:400::2). - connect (101: Network is unreachable) Could not connect to mirrors.tuna.tsinghua.edu.cn:443 (101.6.15.130), connection timed out
E: Failed to fetch https://mirrors.tuna.tsinghua.edu.cn/jenkins/debian-stable/jenkins_2.346.3_all.deb Cannot initiate the connection to mirrors.tuna.tsinghua.edu.cn:443 (2402:f000:1:400::2). - connect (101: Network is unreachable) Could not connect to mirrors.tuna.tsinghua.edu.cn:443 (101.6.15.130), connection timed out
E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?
Hello team,
I just follow the process to install Jenkins on Ubuntu 22.04 LTS & and i faced an below ERROR:
E: The repository ‘http://pkg.jenkins.io/debian-stable binary/ Release’ is not signed."
For that please update the “repository key” and “sources.list” step into installation process
I have found that Solution on Jenkins official site https://www.jenkins.io/blog/2023/03/27/repository-signing-keys-changing/
Thanks…!!
Hello Team,
I just follow your steps to install jenkins on UBUNTU 22.04 LTS
I have found that I got an ERROR “E: The repository ‘http://pkg.jenkins.io/debian-stable binary/ Release’ is not signed.”
So, have found solution that keys are changes from the official jenkins side
Here I am providing link for that … please refer this and update on this tutorial as well… Thank you …
Link: https://www.jenkins.io/blog/2023/03/27/repository-signing-keys-changing/
Had errors that I’ve been unable to solve while trying to start Jenkins.
$ sudo service jenkins start
Job for jenkins.service failed because the control process exited with error code.
See "systemctl status jenkins.service" and "journalctl -xeu jenkins.service" for details.
Service Status
$ systemctl status jenkins.service
● jenkins.service - Jenkins Continuous Integration Server
Loaded: loaded (/lib/systemd/system/jenkins.service; enabled; vendor preset: enabled)
Active: activating (auto-restart) (Result: exit-code) since Tue 2023-09-26 16:43:15 PST; 9ms ago
Process: 19094 ExecStart=/usr/bin/jenkins (code=exited, status=1/FAILURE)
Main PID: 19094 (code=exited, status=1/FAILURE)
CPU: 1.939s
Journal
~
~
~
~
~
~
~
~
~
~
~
~
~
~
~
~
~
~
~
~
~
~
~
-- No entries --
Java Version
$ java --version
openjdk 11.0.20.1 2023-08-24
OpenJDK Runtime Environment (build 11.0.20.1+1-post-Ubuntu-0ubuntu122.04)
OpenJDK 64-Bit Server VM (build 11.0.20.1+1-post-Ubuntu-0ubuntu122.04, mixed mode, sharing)
This is right after sudo apt install jenkins. It simply fails to start and I’m not sure what’s going on.
this is great walk through!
however I stuck for a few hours because I started my droplet on Ubuntu 23 (not 22 as the tutorial states)
and the pgp keys did not match, you need to go for
sudo wget -O /usr/share/keyrings/jenkins-keyring.asc \ [https://pkg.jenkins.io/debian-stable/jenkins.io-2023.key](https://pkg.jenkins.io/debian-stable/jenkins.io-2023.key)
echo deb [signed-by=/usr/share/keyrings/jenkins-keyring.asc] \ https://pkg.jenkins.io/debian-stable binary/ | sudo tee \ /etc/apt/sources.list.d/jenkins.list > /dev/null
For Unbuntu 24
curl -fsSL https://pkg.jenkins.io/debian-stable/jenkins.io-2023.key | sudo tee \
/usr/share/keyrings/jenkins-keyring.asc > /dev/null
echo deb [signed-by=/usr/share/keyrings/jenkins-keyring.asc] \
https://pkg.jenkins.io/debian-stable binary/ | sudo tee \
/etc/apt/sources.list.d/jenkins.list > /dev/null
otherwise - I get
Error: The repository ‘http://pkg.jenkins.io/debian-stable all Release’ does not have a Release file.
https://www.jenkins.io/blog/2023/03/27/repository-signing-keys-changing/