DEV Community

Cover image for How to upgrade Jenkins on Ubuntu
FarhanYaseen
FarhanYaseen

Posted on

 

How to upgrade Jenkins on Ubuntu

To upgrade a Jenkins on the Ubuntu

First, update the apt packages to fetch the latest versions

sudo apt-get update

Use the following commands to upgrade Jenkins:

sudo apt-get --only-upgrade install jenkins

And then restart the Jenkins server using the command

sudo systemctl restart jenkins

Oldest comments (1)

Collapse
 
maprangsoft profile image
Maprangsoft

thank you very much.

An Animated Guide to Node.js Event Loop

Node.js doesn’t stop from running other operations because of Libuv, a C++ library responsible for the event loop and asynchronously handling tasks such as network requests, DNS resolution, file system operations, data encryption, etc.

What happens under the hood when Node.js works on tasks such as database queries? We will explore it by following this piece of code step by step.