Start and stop the Jenkins on Ubuntu

Check the status of Jenkins on Ubuntu

sudo systemctl status jenkins


root@Oracle1:/home/sunny/Desktop# sudo systemctl status jenkins

● jenkins.service - Jenkins Continuous Integration Server

     Loaded: loaded (/lib/systemd/system/jenkins.service; enabled; vendor pres>

     Active: active (running) since Sat 2023-02-11 08:16:05 PST; 56s ago

   Main PID: 55441 (java)

      Tasks: 50 (limit: 2288)

     Memory: 671.1M

        CPU: 54.577s

     CGroup: /system.slice/jenkins.service

             └─55441 /usr/bin/java -Djava.awt.headless=true -jar /usr/share/ja>



Start the Jenkins on Ubuntu Server

sudo systemctl start jenkins

Stop the Jenkins on Ubuntu Server

sudo systemctl stop jenkins

Leave a Reply