{"id":2923,"date":"2019-06-09T15:42:57","date_gmt":"2019-06-09T13:42:57","guid":{"rendered":"https:\/\/tech.lobobrothers.com\/install-jenkins-on-debian\/"},"modified":"2025-03-14T09:48:20","modified_gmt":"2025-03-14T08:48:20","slug":"install-jenkins-on-debian","status":"publish","type":"post","link":"https:\/\/tech.lobobrothers.com\/en\/install-jenkins-on-debian\/","title":{"rendered":"Install Jenkins on Debian"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-post\" data-elementor-id=\"2923\" class=\"elementor elementor-2923 elementor-128\" data-elementor-post-type=\"post\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-291852f9 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"291852f9\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-9f00903\" data-id=\"9f00903\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-63ba6c35 elementor-widget elementor-widget-text-editor\" data-id=\"63ba6c35\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p><\/p>\n<h2>LINUX SIMPLE<\/h2>\n<div><\/div>\n<p>Before we start, let&#8217;s ask ourselves the question: What is Jenkins?<\/p>\n<p>Jenkins is an open source <a href=\"https:\/\/en.wikipedia.org\/wiki\/Continuous_integration\">continuous integration<\/a> server written in java that stands out for its ease of use. We could go into what this continuous integration and continuous delivery (CI\/CD) stuff is all about, but we&#8217;ll leave that to you to investigate.<\/p>\n<p>Installing Jenkins takes no more than 10 minutes. The first thing we need is to have java 8 installed, as versions 10 and 11 are not supported by Jenkins.<\/p>\n<p><\/p>\n<p><\/p>\n<blockquote class=\"wp-block-quote\"><p>sudo apt update<\/p>\n<p>sudo apt install openjdk-8-jdk<\/p><\/blockquote>\n<p><\/p>\n<p><\/p>\n<p><\/p>\n<p><\/p>\n<p>We are going to install Jenkins from its repositories, therefore we will need to import the GPG key<\/p>\n<p><\/p>\n<p><\/p>\n<blockquote class=\"wp-block-quote\"><p>wget -q -O &#8211; https:\/\/pkg.jenkins.io\/debian\/jenkins.io.key | sudo apt-key add &#8211;<\/p><\/blockquote>\n<p><\/p>\n<p><\/p>\n<p><\/p>\n<p><\/p>\n<p>Now we need to add the Jenkins repository to our apt, at this point it&#8217;s a bit up to the consumer to put it in the main list by editing<\/p>\n<p><\/p>\n<p><\/p>\n<blockquote class=\"wp-block-quote\"><p>vi \/etc\/apt\/sources.list<\/p>\n<p>y a\u00f1adiendo el repositorio<\/p>\n<p>deb https:\/\/pkg.origin.jenkins.io\/debian-stable\/ binary\/<\/p><\/blockquote>\n<p><\/p>\n<p><\/p>\n<p><\/p>\n<p><\/p>\n<p>or creating a list for Jenkins<\/p>\n<p><\/p>\n<p><\/p>\n<blockquote class=\"wp-block-quote\"><p>sudo sh -c &#8216;echo deb https:\/\/pkg.origin.jenkins.io\/debian-stable\/ binary\/ &gt; \/etc\/apt\/sources.list.d\/jenkins.list&#8217;<\/p><\/blockquote>\n<p><\/p>\n<p><\/p>\n<p><\/p>\n<p><\/p>\n<p>Whenever we add new repositories we have to update apt because otherwise it is as if we have done nothing.<\/p>\n<p><\/p>\n<p><\/p>\n<blockquote class=\"wp-block-quote\"><p>sudo apt update<\/p><\/blockquote>\n<p><\/p>\n<p><\/p>\n<p><\/p>\n<p><\/p>\n<p>Once the update is complete, we can install<\/p>\n<p><\/p>\n<p><\/p>\n<blockquote class=\"wp-block-quote\"><p>sudo apt install jenkins<\/p><\/blockquote>\n<p><\/p>\n<p><\/p>\n<p><\/p>\n<p><\/p>\n<p>And finally we start the service and configure it to start with the system<\/p>\n<p><\/p>\n<p><\/p>\n<blockquote class=\"wp-block-quote\"><p>sudo systemctl start jenkins<\/p>\n<p>sudo systemctl enable jenkins<\/p><\/blockquote>\n<p><\/p>\n<p><\/p>\n<p><\/p>\n<p><\/p>\n<p>With these simple steps we would already have Jenkins installed on our machine running on http on port 8080. Ummm http? better let&#8217;s give it some security where we have 2 options Apache, Nginx,&#8230;. as a reverse proxy, either by doing the following or both why not?<\/p>\n<p><\/p>\n<p><\/p>\n<blockquote class=\"wp-block-quote\"><p>sudo openssl pkcs12 -inkey dominio.net.key -in dominio.net.pem -export -out keys.pkcs12<\/p>\n<p>sudo keytool -importkeystore -srckeystore keys.pkcs12 -srcstoretype pkcs12 -destkeystore \/var\/lib\/jenkins\/jenkins.jks<\/p><\/blockquote>\n<p><\/p>\n<p><\/p>\n<p><\/p>\n<p><\/p>\n<p>These commands will prompt you to enter a password, edit<\/p>\n<p><\/p>\n<p><\/p>\n<blockquote class=\"wp-block-quote\"><p>vi \/etc\/sysconfig\/jenkins<\/p><\/blockquote>\n<p><\/p>\n<p><\/p>\n<p><\/p>\n<p><\/p>\n<p>and in the configuration leave the following line as this one<\/p>\n<p><\/p>\n<p><\/p>\n<blockquote class=\"wp-block-quote\"><p>JENKINS_ARGS=&#8221;&#8211;httpPort=-1 &#8211;httpsPort=8443 &#8211;httpsKeyStore=\/var\/lib\/jenkins\/jenkins.jks &#8211;httpsKeyStorePassword=the password that you entered before&#8221;<\/p><\/blockquote>\n<p><\/p>\n<p><\/p>\n<p><\/p>\n<p><\/p>\n<p>We restart Jenkins<\/p>\n<p><\/p>\n<p><\/p>\n<blockquote class=\"wp-block-quote\"><p>sudo systemctl restart jenkins<\/p><\/blockquote>\n<p><\/p>\n<p><\/p>\n<p><\/p>\n<p><\/p>\n<p>Ready, we have our Jenkins listening on https on port 8443, personally I would also add a reverse proxy apache.<\/p>\n<p><\/p>\n<p><\/p>\n<p>This was just the installation, we will create a second post or expand this one with the first steps after the installation.<\/p>\n<p><\/p>\n<p><\/p>\n<p class=\"has-text-align-right\">TL.<\/p>\n<p><\/p>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>LINUX SIMPLE Before we start, let&#8217;s ask ourselves the question: What is Jenkins? Jenkins is an open source continuous integration server written in java that stands out for its ease of use. We could go into what this continuous integration and continuous delivery (CI\/CD) stuff is all about, but we&#8217;ll leave that to you to [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":2927,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5],"tags":[],"class_list":["post-2923","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-open-source"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Install Jenkins on Debian - LBT<\/title>\n<meta name=\"description\" content=\"Installing Jenkins in Debian is very simple and fast, take a look at the post to see that it is not complicated.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/tech.lobobrothers.com\/en\/install-jenkins-on-debian\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Install Jenkins on Debian - LBT\" \/>\n<meta property=\"og:description\" content=\"Installing Jenkins in Debian is very simple and fast, take a look at the post to see that it is not complicated.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/tech.lobobrothers.com\/en\/install-jenkins-on-debian\/\" \/>\n<meta property=\"og:site_name\" content=\"Blog sobre linux y el mundo opensource\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/LoboBrothers\/\" \/>\n<meta property=\"article:published_time\" content=\"2019-06-09T13:42:57+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-03-14T08:48:20+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2016\/04\/b-1-4.jpg.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"800\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"TL\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"TL\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/tech.lobobrothers.com\/en\/install-jenkins-on-debian\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/tech.lobobrothers.com\/en\/install-jenkins-on-debian\/\"},\"author\":{\"name\":\"TL\",\"@id\":\"https:\/\/tech.lobobrothers.com\/en\/#\/schema\/person\/11c359ab9896aa196007651fa6208beb\"},\"headline\":\"Install Jenkins on Debian\",\"datePublished\":\"2019-06-09T13:42:57+00:00\",\"dateModified\":\"2025-03-14T08:48:20+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/tech.lobobrothers.com\/en\/install-jenkins-on-debian\/\"},\"wordCount\":429,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/tech.lobobrothers.com\/en\/#organization\"},\"image\":{\"@id\":\"https:\/\/tech.lobobrothers.com\/en\/install-jenkins-on-debian\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2016\/04\/b-1-4.jpg.webp\",\"articleSection\":[\"C\u00f3digo libre\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/tech.lobobrothers.com\/en\/install-jenkins-on-debian\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/tech.lobobrothers.com\/en\/install-jenkins-on-debian\/\",\"url\":\"https:\/\/tech.lobobrothers.com\/en\/install-jenkins-on-debian\/\",\"name\":\"Install Jenkins on Debian - LBT\",\"isPartOf\":{\"@id\":\"https:\/\/tech.lobobrothers.com\/en\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/tech.lobobrothers.com\/en\/install-jenkins-on-debian\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/tech.lobobrothers.com\/en\/install-jenkins-on-debian\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2016\/04\/b-1-4.jpg.webp\",\"datePublished\":\"2019-06-09T13:42:57+00:00\",\"dateModified\":\"2025-03-14T08:48:20+00:00\",\"description\":\"Installing Jenkins in Debian is very simple and fast, take a look at the post to see that it is not complicated.\",\"breadcrumb\":{\"@id\":\"https:\/\/tech.lobobrothers.com\/en\/install-jenkins-on-debian\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/tech.lobobrothers.com\/en\/install-jenkins-on-debian\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/tech.lobobrothers.com\/en\/install-jenkins-on-debian\/#primaryimage\",\"url\":\"https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2016\/04\/b-1-4.jpg.webp\",\"contentUrl\":\"https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2016\/04\/b-1-4.jpg.webp\",\"width\":1920,\"height\":800,\"caption\":\"B 1\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/tech.lobobrothers.com\/en\/install-jenkins-on-debian\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Portada\",\"item\":\"https:\/\/tech.lobobrothers.com\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Install Jenkins on Debian\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/tech.lobobrothers.com\/en\/#website\",\"url\":\"https:\/\/tech.lobobrothers.com\/en\/\",\"name\":\"Tech LBT\",\"description\":\"Como apasionados de la tecnolog\u00eda y amantes del open source creamos este blog con art\u00edculos interesantes obre linux, cloud, open source, criptomonedas y ciberseguridad\",\"publisher\":{\"@id\":\"https:\/\/tech.lobobrothers.com\/en\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/tech.lobobrothers.com\/en\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/tech.lobobrothers.com\/en\/#organization\",\"name\":\"Lobo Brothers Technology\",\"url\":\"https:\/\/tech.lobobrothers.com\/en\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/tech.lobobrothers.com\/en\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2019\/06\/logo_red.png\",\"contentUrl\":\"https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2019\/06\/logo_red.png\",\"width\":110,\"height\":50,\"caption\":\"Lobo Brothers Technology\"},\"image\":{\"@id\":\"https:\/\/tech.lobobrothers.com\/en\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/LoboBrothers\/\",\"https:\/\/www.linkedin.com\/company\/lobobrothers\/about\/?viewAsMember=true\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/tech.lobobrothers.com\/en\/#\/schema\/person\/11c359ab9896aa196007651fa6208beb\",\"name\":\"TL\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/tech.lobobrothers.com\/en\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/a2d3b9e0b67bd28fe8248346c09cbe07?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/a2d3b9e0b67bd28fe8248346c09cbe07?s=96&d=mm&r=g\",\"caption\":\"TL\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Install Jenkins on Debian - LBT","description":"Installing Jenkins in Debian is very simple and fast, take a look at the post to see that it is not complicated.","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:\/\/tech.lobobrothers.com\/en\/install-jenkins-on-debian\/","og_locale":"en_US","og_type":"article","og_title":"Install Jenkins on Debian - LBT","og_description":"Installing Jenkins in Debian is very simple and fast, take a look at the post to see that it is not complicated.","og_url":"https:\/\/tech.lobobrothers.com\/en\/install-jenkins-on-debian\/","og_site_name":"Blog sobre linux y el mundo opensource","article_publisher":"https:\/\/www.facebook.com\/LoboBrothers\/","article_published_time":"2019-06-09T13:42:57+00:00","article_modified_time":"2025-03-14T08:48:20+00:00","og_image":[{"width":1920,"height":800,"url":"https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2016\/04\/b-1-4.jpg.webp","type":"image\/jpeg"}],"author":"TL","twitter_card":"summary_large_image","twitter_misc":{"Written by":"TL","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/tech.lobobrothers.com\/en\/install-jenkins-on-debian\/#article","isPartOf":{"@id":"https:\/\/tech.lobobrothers.com\/en\/install-jenkins-on-debian\/"},"author":{"name":"TL","@id":"https:\/\/tech.lobobrothers.com\/en\/#\/schema\/person\/11c359ab9896aa196007651fa6208beb"},"headline":"Install Jenkins on Debian","datePublished":"2019-06-09T13:42:57+00:00","dateModified":"2025-03-14T08:48:20+00:00","mainEntityOfPage":{"@id":"https:\/\/tech.lobobrothers.com\/en\/install-jenkins-on-debian\/"},"wordCount":429,"commentCount":0,"publisher":{"@id":"https:\/\/tech.lobobrothers.com\/en\/#organization"},"image":{"@id":"https:\/\/tech.lobobrothers.com\/en\/install-jenkins-on-debian\/#primaryimage"},"thumbnailUrl":"https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2016\/04\/b-1-4.jpg.webp","articleSection":["C\u00f3digo libre"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/tech.lobobrothers.com\/en\/install-jenkins-on-debian\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/tech.lobobrothers.com\/en\/install-jenkins-on-debian\/","url":"https:\/\/tech.lobobrothers.com\/en\/install-jenkins-on-debian\/","name":"Install Jenkins on Debian - LBT","isPartOf":{"@id":"https:\/\/tech.lobobrothers.com\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/tech.lobobrothers.com\/en\/install-jenkins-on-debian\/#primaryimage"},"image":{"@id":"https:\/\/tech.lobobrothers.com\/en\/install-jenkins-on-debian\/#primaryimage"},"thumbnailUrl":"https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2016\/04\/b-1-4.jpg.webp","datePublished":"2019-06-09T13:42:57+00:00","dateModified":"2025-03-14T08:48:20+00:00","description":"Installing Jenkins in Debian is very simple and fast, take a look at the post to see that it is not complicated.","breadcrumb":{"@id":"https:\/\/tech.lobobrothers.com\/en\/install-jenkins-on-debian\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/tech.lobobrothers.com\/en\/install-jenkins-on-debian\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/tech.lobobrothers.com\/en\/install-jenkins-on-debian\/#primaryimage","url":"https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2016\/04\/b-1-4.jpg.webp","contentUrl":"https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2016\/04\/b-1-4.jpg.webp","width":1920,"height":800,"caption":"B 1"},{"@type":"BreadcrumbList","@id":"https:\/\/tech.lobobrothers.com\/en\/install-jenkins-on-debian\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Portada","item":"https:\/\/tech.lobobrothers.com\/en\/"},{"@type":"ListItem","position":2,"name":"Install Jenkins on Debian"}]},{"@type":"WebSite","@id":"https:\/\/tech.lobobrothers.com\/en\/#website","url":"https:\/\/tech.lobobrothers.com\/en\/","name":"Tech LBT","description":"Como apasionados de la tecnolog\u00eda y amantes del open source creamos este blog con art\u00edculos interesantes obre linux, cloud, open source, criptomonedas y ciberseguridad","publisher":{"@id":"https:\/\/tech.lobobrothers.com\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/tech.lobobrothers.com\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/tech.lobobrothers.com\/en\/#organization","name":"Lobo Brothers Technology","url":"https:\/\/tech.lobobrothers.com\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/tech.lobobrothers.com\/en\/#\/schema\/logo\/image\/","url":"https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2019\/06\/logo_red.png","contentUrl":"https:\/\/tech.lobobrothers.com\/wp-content\/uploads\/2019\/06\/logo_red.png","width":110,"height":50,"caption":"Lobo Brothers Technology"},"image":{"@id":"https:\/\/tech.lobobrothers.com\/en\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/LoboBrothers\/","https:\/\/www.linkedin.com\/company\/lobobrothers\/about\/?viewAsMember=true"]},{"@type":"Person","@id":"https:\/\/tech.lobobrothers.com\/en\/#\/schema\/person\/11c359ab9896aa196007651fa6208beb","name":"TL","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/tech.lobobrothers.com\/en\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/a2d3b9e0b67bd28fe8248346c09cbe07?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/a2d3b9e0b67bd28fe8248346c09cbe07?s=96&d=mm&r=g","caption":"TL"}}]}},"post_mailing_queue_ids":[],"_links":{"self":[{"href":"https:\/\/tech.lobobrothers.com\/en\/wp-json\/wp\/v2\/posts\/2923","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/tech.lobobrothers.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/tech.lobobrothers.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/tech.lobobrothers.com\/en\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/tech.lobobrothers.com\/en\/wp-json\/wp\/v2\/comments?post=2923"}],"version-history":[{"count":1,"href":"https:\/\/tech.lobobrothers.com\/en\/wp-json\/wp\/v2\/posts\/2923\/revisions"}],"predecessor-version":[{"id":8211,"href":"https:\/\/tech.lobobrothers.com\/en\/wp-json\/wp\/v2\/posts\/2923\/revisions\/8211"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/tech.lobobrothers.com\/en\/wp-json\/wp\/v2\/media\/2927"}],"wp:attachment":[{"href":"https:\/\/tech.lobobrothers.com\/en\/wp-json\/wp\/v2\/media?parent=2923"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/tech.lobobrothers.com\/en\/wp-json\/wp\/v2\/categories?post=2923"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/tech.lobobrothers.com\/en\/wp-json\/wp\/v2\/tags?post=2923"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}