{"id":2416,"date":"2025-11-15T12:30:00","date_gmt":"2025-11-15T18:30:00","guid":{"rendered":"https:\/\/linuxhostsupport.com\/blog\/?p=2416"},"modified":"2025-10-10T10:40:24","modified_gmt":"2025-10-10T15:40:24","slug":"how-to-install-jenkins-on-debian-13","status":"publish","type":"post","link":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-jenkins-on-debian-13\/","title":{"rendered":"How to install Jenkins on Debian 13"},"content":{"rendered":"\n<div id=\"linux-2604750353\" class=\"linux-before-1st-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1339&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div><p>In this blog post, we will show you how to install Jenkins on Debian 13 OS. Jenkins is a free and open-source automation server for automating tasks in the cycle of software development, especially in the CI\/CD (Continuous Integration and Continuous Delivery). Jenkins offers a variety of features and functionalities, such as a huge plugin ecosystem, CI\/CD, a user-friendly web interface, and the ability to define the entire CI\/CD process as code in only one file called Jenkinsfile. In this post, we will install Jenkins as a stand-alone Java application running as a service.<\/p>\n\n\n\n<p>Installing Jenkins on Debian 13 is a straightforward process that takes a couple of minutes. Let&#8217;s get started!<\/p>\n\n\n\n<!--more-->\n\n\n\n<h2 class=\"wp-block-heading\">Prerequisites<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A server running Debian 13 OS<\/li>\n\n\n\n<li>User privileges: root or non-root user with sudo privileges<\/li>\n\n\n\n<li>A valid domain with a pointed A record to the server IP address<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Step 1. Update the System<\/h2>\n\n\n\n<p>Before we start with the installation of Java and Jenkins, we assume that you have a freshly installed OS, which is why we will update the system packages to their latest versions. To do that, execute the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo apt update -y &amp;&amp; sudo apt upgrade -y<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 2. Install Java<\/h2>\n\n\n\n<p>Since Jenkins requires Java to run, we will install Java with the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo apt install default-jdk -y<\/pre>\n\n\n\n<p>Once installed, check the Java version with the command below:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">java -version<\/pre>\n\n\n\n<p>You should get output similar to this:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">root@host:~# java -version<br>openjdk version \"21.0.8\" 2025-07-15<br>OpenJDK Runtime Environment (build 21.0.8+9-Debian-1)<br>OpenJDK 64-Bit Server VM (build 21.0.8+9-Debian-1, mixed mode, sharing)<\/pre>\n\n\n\n<p>Java is installed, and now we can proceed with Jenkins installation.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 3. Install Jenkins<\/h2>\n\n\n\n<p>First, we need to download the GPG security key:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">curl -fsSL https:\/\/pkg.jenkins.io\/debian-stable\/jenkins.io-2023.key | sudo tee \\\n  \/usr\/share\/keyrings\/jenkins-keyring.asc &gt; \/dev\/null<\/pre>\n\n\n\n<p>Then, add the Jenkins repository, because it does not exist in the default Jenkins repo:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">echo deb [signed-by=\/usr\/share\/keyrings\/jenkins-keyring.asc] \\\n  https:\/\/pkg.jenkins.io\/debian-stable binary\/ | sudo tee \\\n  \/etc\/apt\/sources.list.d\/jenkins.list &gt; \/dev\/null<\/pre>\n\n\n\n<p>Once the GPG key and repository are added, we can proceed with installing Jenkins with the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo apt install jenkins -y<\/pre>\n\n\n\n<p>Once installed, start and enable the Jenkins service:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo systemctl start jenkins &amp;&amp; sudo systemctl enable jenkins<\/pre>\n\n\n\n<p>To check the status of the Jenkins service:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo systemctl status jenkins<\/pre>\n\n\n\n<p>You should get the following output:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">root@host:~# sudo systemctl status jenkins\n\u25cf jenkins.service - Jenkins Continuous Integration Server\n     Loaded: loaded (\/usr\/lib\/systemd\/system\/jenkins.service; enabled; preset: enabled)\n     Active: active (running) since Fri 2025-09-05 00:03:13 CDT; 30min ago\n Invocation: b245bb9a48e7421aa7fd9a5a166b811e\n   Main PID: 6815 (java)\n      Tasks: 44 (limit: 4640)\n     Memory: 625M (peak: 625.3M)\n        CPU: 42.756s\n     CGroup: \/system.slice\/jenkins.service\n             \u2514\u25006815 \/usr\/bin\/java -Djava.awt.headless=true -jar \/usr\/share\/java\/jenkins.war --webroot=\/var\/cache\/jenkins\/war --httpPort=8080\n\nJenkins is successfully installed. In the next step, we will show you how to finish the installation by accessing it in the browser.<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 4. Finish the Jenkins installation<\/h2>\n\n\n\n<p>Jenkins is running as a service on port 8080 and is accessible in the browser using that port along with the server IP address: <strong>http:YourServerIPaddress:8080<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1024\" height=\"878\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/09\/j1-1024x878.png\" alt=\"unlock jenkins\" class=\"wp-image-2417\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/09\/j1-1024x878.png 1024w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/09\/j1-300x257.png 300w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/09\/j1-150x129.png 150w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/09\/j1-768x658.png 768w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/09\/j1.png 1065w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>On the first screen, a command is provided on how you get the initial admin password to unlock Jenkins. Execute the following command in your terminal:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">cat \/var\/lib\/jenkins\/secrets\/initialAdminPassword<\/pre>\n\n\n\n<p>You should get output similar to this:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">root@host:~# cat \/var\/lib\/jenkins\/secrets\/initialAdminPassword<br>c3f44afb23f8480587b85e23159510f1<\/pre>\n\n\n\n<p>Copy the string, paste it into the administrator password field, and click on the &#8220;Continue&#8221; button.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1024\" height=\"878\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/09\/j2-1024x878.png\" alt=\"jenkins administrator password\" class=\"wp-image-2418\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/09\/j2-1024x878.png 1024w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/09\/j2-300x257.png 300w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/09\/j2-150x129.png 150w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/09\/j2-768x658.png 768w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/09\/j2.png 1065w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>On the next screen, you will need to select to install the suggested plugins or select which plugins you want to install. In this post, we will go with the default suggested plugins.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1024\" height=\"878\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/09\/j3-1024x878.png\" alt=\"install Jenkins on Debian 13\" class=\"wp-image-2419\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/09\/j3-1024x878.png 1024w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/09\/j3-300x257.png 300w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/09\/j3-150x129.png 150w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/09\/j3-768x658.png 768w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/09\/j3.png 1065w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>The installation will start, and you should allow some time for its completion.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1024\" height=\"878\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/09\/j4-1024x878.png\" alt=\"Jenkins on Debian 13\" class=\"wp-image-2420\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/09\/j4-1024x878.png 1024w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/09\/j4-300x257.png 300w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/09\/j4-150x129.png 150w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/09\/j4-768x658.png 768w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/09\/j4.png 1065w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>Once it is complete, you will be asked to enter your administrator user credentials:<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1024\" height=\"878\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/09\/j5-1024x878.png\" alt=\"create Jenkins admin user\" class=\"wp-image-2421\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/09\/j5-1024x878.png 1024w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/09\/j5-300x257.png 300w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/09\/j5-150x129.png 150w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/09\/j5-768x658.png 768w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/09\/j5.png 1065w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>On the next screen is the Jenkins URL.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1024\" height=\"878\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/09\/j6-1024x878.png\" alt=\"install Jenkins on Debian 13 configuration\" class=\"wp-image-2422\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/09\/j6-1024x878.png 1024w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/09\/j6-300x257.png 300w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/09\/j6-150x129.png 150w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/09\/j6-768x658.png 768w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/09\/j6.png 1065w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>After that, the next is the screen before you are redirected to the Jenkins admin dashboard:<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1024\" height=\"878\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/09\/j7-1024x878.png\" alt=\"Jenkins is installed on Debian 13\" class=\"wp-image-2423\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/09\/j7-1024x878.png 1024w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/09\/j7-300x257.png 300w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/09\/j7-150x129.png 150w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/09\/j7-768x658.png 768w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/09\/j7.png 1065w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>The Jenkins Admin dashboard will look like this:<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1024\" height=\"321\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/09\/j8-1024x321.png\" alt=\"Jenkins Admin Dashboard\" class=\"wp-image-2424\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/09\/j8-1024x321.png 1024w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/09\/j8-300x94.png 300w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/09\/j8-150x47.png 150w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/09\/j8-768x241.png 768w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/09\/j8-1536x482.png 1536w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/09\/j8.png 1840w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Step 5. Install Apache Web Server<\/h2>\n\n\n\n<p>A Reverse proxy is necessary if you want to access Jenkins via the domain name. The reverse proxy is configured in the web server configuration file. Since we do not have a web server installed yet, let&#8217;s install the Apache web server first:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo apt install apache2 -y<\/pre>\n\n\n\n<p>Once installed start and enable the Apache service:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo systemctl start apache2 &amp;&amp; sudo systemctl enable apache2<\/pre>\n\n\n\n<p>To check the status of the Apache service:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo systemctl status apache2<\/pre>\n\n\n\n<p>You should get the following output:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">root@host:~# sudo systemctl status apache2<br>\u25cf apache2.service - The Apache HTTP Server<br>     Loaded: loaded (\/usr\/lib\/systemd\/system\/apache2.service; enabled; preset: enabled)<br>     Active: active (running) since Fri 2025-09-05 02:59:31 CDT; 44s ago<br> Invocation: c719ac8ceb6643f9b40ffd2efd4823d3<br>       Docs: https:\/\/httpd.apache.org\/docs\/2.4\/<br>   Main PID: 8601 (apache2)<br>      Tasks: 55 (limit: 4640)<br>     Memory: 5.2M (peak: 5.9M)<br>        CPU: 90ms<br>     CGroup: \/system.slice\/apache2.service<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 6. Create Apache Virtual Host Configuration File and Set Up Reverse Proxy<\/h2>\n\n\n\n<p>To create an Apache configuration file, execute the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo touch \/etc\/apache2\/sites-available\/jenkins.conf<\/pre>\n\n\n\n<p>Open the file and paste the following lines of code<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">    &lt;Virtualhost *:80><br>    ServerName        yourdomainhere.com<br>    ProxyRequests     Off<br>    ProxyPreserveHost On<br>    AllowEncodedSlashes NoDecode<br><br>    &lt;Proxy http:\/\/localhost:8080\/*><br>      Order deny,allow<br>      Allow from all<br>    &lt;\/Proxy><br><br>    ProxyPass         \/  http:\/\/localhost:8080\/ nocanon<br>    ProxyPassReverse  \/  http:\/\/localhost:8080\/<br>    ProxyPassReverse  \/  http:\/\/yourdomain.com\/<br>&lt;\/Virtualhost><\/pre>\n\n\n\n<p>Save the file and close it. Then you need to enable the Jenkins configuration along with some Apache modules:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo a2ensite jenkins<br>sudo a2enmod headers<br>sudo a2enmod proxy<br>sudo a2enmod proxy_http<\/pre>\n\n\n\n<p>Check the Apache2 syntax:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">apachectl -t<\/pre>\n\n\n\n<p>You should receive the following output:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">root@host:~# apachectl -t<br>Syntax OK<\/pre>\n\n\n\n<p>If the syntax is OK, restartd the Apache service.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">systemctl restart apache2<\/pre>\n\n\n\n<p>That&#8217;s it. Now you can access and finish the Jenkins installation at <strong>http:\/\/yourdomain.com<\/strong><\/p>\n\n\n\n<p>You successfully installed Jenkins on Debian 13.<\/p>\n\n\n\n<p>If you have difficulties with this installation, our Linux admins will help you with any aspect. You need to sign up for one of our <a href=\"https:\/\/linuxhostsupport.com\/monthly-server-management.html\">monthly server management<\/a> or <a href=\"https:\/\/linuxhostsupport.com\/per-incident-support.html\">per-incident server support plans<\/a>. Do not hesitate to contact us anytime you want. We are available 24\/7.<\/p>\n\n\n\n<p>PS. If you liked this post about how to install Jenkins on Debian 13, please share it with your friends or leave a reply below. Thanks.<\/p><div id=\"linux-3048084356\" class=\"linux-after-8th-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1340&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div>\n","protected":false},"excerpt":{"rendered":"<p>In this blog post, we will show you how to install Jenkins on Debian 13 OS. Jenkins is a free and open-source automation server for automating tasks in the cycle of software development, especially in the CI\/CD (Continuous Integration and Continuous Delivery). Jenkins offers a variety of features and functionalities, such as a huge plugin [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":2436,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[201],"tags":[318,199,49],"class_list":["post-2416","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-debian","tag-debian-13","tag-how-to-install","tag-jenkins"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to install Jenkins on Debian 13 | LinuxHostSupport<\/title>\n<meta name=\"description\" content=\"Learn how to install Jenkins on Debian 13 or get on of our server support plans and get our admins to set it up for you.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-jenkins-on-debian-13\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to install Jenkins on Debian 13 | LinuxHostSupport\" \/>\n<meta property=\"og:description\" content=\"Learn how to install Jenkins on Debian 13 or get on of our server support plans and get our admins to set it up for you.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-jenkins-on-debian-13\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxHostSupport\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/linuxhostsupport\" \/>\n<meta property=\"article:published_time\" content=\"2025-11-15T18:30:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/11\/how-to-install-jenkins-on-debian-13.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"742\" \/>\n\t<meta property=\"og:image:height\" content=\"410\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:site\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-jenkins-on-debian-13\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-jenkins-on-debian-13\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"headline\":\"How to install Jenkins on Debian 13\",\"datePublished\":\"2025-11-15T18:30:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-jenkins-on-debian-13\\\/\"},\"wordCount\":707,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-jenkins-on-debian-13\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/11\\\/how-to-install-jenkins-on-debian-13.webp\",\"keywords\":[\"debian 13\",\"how to install\",\"jenkins\"],\"articleSection\":[\"Debian\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-jenkins-on-debian-13\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-jenkins-on-debian-13\\\/\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-jenkins-on-debian-13\\\/\",\"name\":\"How to install Jenkins on Debian 13 | LinuxHostSupport\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-jenkins-on-debian-13\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-jenkins-on-debian-13\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/11\\\/how-to-install-jenkins-on-debian-13.webp\",\"datePublished\":\"2025-11-15T18:30:00+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"description\":\"Learn how to install Jenkins on Debian 13 or get on of our server support plans and get our admins to set it up for you.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-jenkins-on-debian-13\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-jenkins-on-debian-13\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-jenkins-on-debian-13\\\/#primaryimage\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/11\\\/how-to-install-jenkins-on-debian-13.webp\",\"contentUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/11\\\/how-to-install-jenkins-on-debian-13.webp\",\"width\":742,\"height\":410,\"caption\":\"How to install Jenkins on Debian 13\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-jenkins-on-debian-13\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to install Jenkins on Debian 13\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\",\"name\":\"LinuxHostSupport\",\"description\":\"Linux Tutorials and Guides\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/author\\\/r0s3admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to install Jenkins on Debian 13 | LinuxHostSupport","description":"Learn how to install Jenkins on Debian 13 or get on of our server support plans and get our admins to set it up for you.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-jenkins-on-debian-13\/","og_locale":"en_US","og_type":"article","og_title":"How to install Jenkins on Debian 13 | LinuxHostSupport","og_description":"Learn how to install Jenkins on Debian 13 or get on of our server support plans and get our admins to set it up for you.","og_url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-jenkins-on-debian-13\/","og_site_name":"LinuxHostSupport","article_publisher":"https:\/\/www.facebook.com\/linuxhostsupport","article_published_time":"2025-11-15T18:30:00+00:00","og_image":[{"width":742,"height":410,"url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/11\/how-to-install-jenkins-on-debian-13.webp","type":"image\/webp"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@lnxhostsupport","twitter_site":"@lnxhostsupport","twitter_misc":{"Written by":"admin","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-jenkins-on-debian-13\/#article","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-jenkins-on-debian-13\/"},"author":{"name":"admin","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"headline":"How to install Jenkins on Debian 13","datePublished":"2025-11-15T18:30:00+00:00","mainEntityOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-jenkins-on-debian-13\/"},"wordCount":707,"commentCount":0,"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-jenkins-on-debian-13\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/11\/how-to-install-jenkins-on-debian-13.webp","keywords":["debian 13","how to install","jenkins"],"articleSection":["Debian"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-jenkins-on-debian-13\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-jenkins-on-debian-13\/","url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-jenkins-on-debian-13\/","name":"How to install Jenkins on Debian 13 | LinuxHostSupport","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-jenkins-on-debian-13\/#primaryimage"},"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-jenkins-on-debian-13\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/11\/how-to-install-jenkins-on-debian-13.webp","datePublished":"2025-11-15T18:30:00+00:00","author":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"description":"Learn how to install Jenkins on Debian 13 or get on of our server support plans and get our admins to set it up for you.","breadcrumb":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-jenkins-on-debian-13\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-jenkins-on-debian-13\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-jenkins-on-debian-13\/#primaryimage","url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/11\/how-to-install-jenkins-on-debian-13.webp","contentUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/11\/how-to-install-jenkins-on-debian-13.webp","width":742,"height":410,"caption":"How to install Jenkins on Debian 13"},{"@type":"BreadcrumbList","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-jenkins-on-debian-13\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linuxhostsupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to install Jenkins on Debian 13"}]},{"@type":"WebSite","@id":"https:\/\/linuxhostsupport.com\/blog\/#website","url":"https:\/\/linuxhostsupport.com\/blog\/","name":"LinuxHostSupport","description":"Linux Tutorials and Guides","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/linuxhostsupport.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","caption":"admin"},"url":"https:\/\/linuxhostsupport.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/2416","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/comments?post=2416"}],"version-history":[{"count":3,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/2416\/revisions"}],"predecessor-version":[{"id":2427,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/2416\/revisions\/2427"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media\/2436"}],"wp:attachment":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media?parent=2416"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/categories?post=2416"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/tags?post=2416"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}