{"id":1142,"date":"2022-02-12T16:05:00","date_gmt":"2022-02-12T15:05:00","guid":{"rendered":"https:\/\/irg-net.com\/?p=1142"},"modified":"2022-02-10T16:33:34","modified_gmt":"2022-02-10T15:33:34","slug":"install-and-configure-gitlab-ce-on-debian-10-11","status":"publish","type":"post","link":"https:\/\/irg-net.com\/index.php\/install-and-configure-gitlab-ce-on-debian-10-11\/","title":{"rendered":"Install and Configure GitLab CE on Debian 10 \/ 11"},"content":{"rendered":"\n<p>This guide will walk you through the steps to Install GitLab CE on Debian 10\/11.\u00a0<a href=\"https:\/\/gitlab.com\/gitlab-org\/gitlab-foss\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>GitLab Community Edition<\/strong><\/a>\u00a0(CE) is an open-source application for hosting Git repositories in your own infrastructure. With GitLab you can do project planning and source code management to CI\/CD and monitoring.\u00a0<em>GitLab<\/em>\u00a0has evolved to become a complete DevOps platform, delivered as a single application.<\/p>\n\n\n\n<p>The next sections will cover the steps to be followed to have a running GitLab CE on Debian 10\/11 Linux machine.<\/p>\n\n\n\n<p>In my setup I\u2019ll use a server with the following specs:<\/p>\n\n\n\n<ul class=\"wp-block-list\" style=\"font-size:14px\"><li><strong>4GB<\/strong>\u00a0of Ram<\/li><li><strong>4\u00a0<\/strong>vCPU<\/li><li><strong>50GB\u00a0<\/strong>Disk Space<\/li><li>Domain name:\u00a0<strong><a href=\"https:\/\/irg-net.com\/\">gitlab.irg-net.com<\/a><\/strong><\/li><\/ul>\n\n\n\n<p>So let\u2019s start installation of GitLab CE on Debian 10\/11 system.<\/p>\n\n\n\n<div style=\"height:34px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p><strong>Step 1<\/strong>: For newly installed Debian server, update all packages and upgrade any system packages to the latest release.<\/p>\n\n\n\n<pre class=\"wp-block-code\" style=\"font-size:14px\"><code lang=\"python\" class=\"language-python\">sudo apt update\r\nsudo apt -y upgrade \r\nsudo reboot<\/code><\/pre>\n\n\n\n<div style=\"height:34px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p><strong>Step 2<\/strong>: Once the server has been updated and rebooted, install important software packages for GitLab. All the packages are installed from default package repositories.<\/p>\n\n\n\n<pre class=\"wp-block-code\" style=\"font-size:14px\"><code lang=\"python\" class=\"language-python\">sudo apt -y install curl vim openssh-server ca-certificates<\/code><\/pre>\n\n\n\n<div style=\"height:34px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p><strong>(Optional)<\/strong> GitLab should be able to send emails to you on Git activities. Configure Postfix SMTP Server using the guide below:<\/p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-irg-net wp-block-embed-irg-net\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"IOBMtfUkL3\"><a href=\"https:\/\/irg-net.com\/index.php\/configure-postfix-mta-as-send-only-on-debian-10-11\/\">Configure Postfix MTA as Send-Only on Debian 10 \/ 11<\/a><\/blockquote><iframe loading=\"lazy\" class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Configure Postfix MTA as Send-Only on Debian 10 \/ 11&#8221; &#8212; irg-NET\" src=\"https:\/\/irg-net.com\/index.php\/configure-postfix-mta-as-send-only-on-debian-10-11\/embed\/#?secret=I6O1vaCbsx#?secret=IOBMtfUkL3\" data-secret=\"IOBMtfUkL3\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"><\/iframe>\n<\/div><\/figure>\n\n\n\n<p><strong>Step 3<\/strong>: With the dependency packages installed, let\u2019s add GitLab repository to our Debian 10 server.<\/p>\n\n\n\n<pre class=\"wp-block-code\" style=\"font-size:14px\"><code lang=\"python\" class=\"language-python\">curl https:\/\/packages.gitlab.com\/install\/repositories\/gitlab\/gitlab-ce\/script.deb.sh | sudo bash<\/code><\/pre>\n\n\n\n<p>If this is successful, a positive message should be displayed.<\/p>\n\n\n\n<pre class=\"wp-block-code\" style=\"font-size:14px\"><code lang=\"python\" class=\"language-python\">Running apt-get update... done.\r\nInstalling debian-archive-keyring which is needed for installing \r\napt-transport-https on many Debian systems.\r\nInstalling apt-transport-https... done.\r\nInstalling \/etc\/apt\/sources.list.d\/gitlab_gitlab-ce.list...done.\r\nImporting packagecloud gpg key... done.\r\nRunning apt-get update... done.\r\n\r\nThe repository is setup! You can now install packages.<\/code><\/pre>\n\n\n\n<div style=\"height:34px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p><strong>Step 4<\/strong>: Next, install the GitLab package while changing\u00a0<em><a href=\"https:\/\/irg-net.com\/\">https:\/\/gitlab.example.com<\/a><\/em>\u00a0to the URL at which you want to access your GitLab instance.<\/p>\n\n\n\n<pre class=\"wp-block-code\" style=\"font-size:14px\"><code lang=\"python\" class=\"language-python\">export GITLAB_URL=\"http:\/\/gitlab.irg-net.com\"\r\nsudo EXTERNAL_URL=\"${GITLAB_URL}\" apt install gitlab-ce<\/code><\/pre>\n\n\n\n<p>If your server has a public IP and access to the internet, you can use\u00a0<strong>https<\/strong>\u00a0and Let\u2019s Encrypt SSL certificate.<\/p>\n\n\n\n<pre class=\"wp-block-code\" style=\"font-size:14px\"><code lang=\"python\" class=\"language-python\">export GITLAB_URL=\"https:\/\/gitlab.irg-net.com\"\r\nsudo EXTERNAL_URL=\"${GITLAB_URL}\" apt install gitlab-ce<\/code><\/pre>\n\n\n\n<div style=\"height:34px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>The installation will automatically configure and start GitLab at the URL provided. Whenever you change GitLab configurations on<strong>\u00a0\/etc\/gitlab\/gitlab.rb<\/strong>, reconfigure the application by running the following command.<\/p>\n\n\n\n<pre class=\"wp-block-code\" style=\"font-size:14px\"><code lang=\"python\" class=\"language-python\">sudo gitlab-ctl reconfigure<\/code><\/pre>\n\n\n\n<p>Once the installation of GitLab CE on Debian 10\/11 is done, open the URL <a href=\"https:\/\/irg-net.com\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>https:\/\/gitlab.irg-net.com<\/strong><\/a>\u00a0on your browser to finish the installation of GitLab CE.<\/p>\n\n\n\n<p>On your first visit, you\u2019ll be redirected to a password reset screen. Provide the password for the initial administrator account and click on the\u00a0<strong>Change your password<\/strong>\u00a0button when you are finished.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"493\" src=\"https:\/\/i0.wp.com\/irg-net.com\/wp-content\/uploads\/2022\/02\/1.png?resize=1024%2C493&#038;ssl=1\" alt=\"\" class=\"wp-image-1143\" srcset=\"https:\/\/i0.wp.com\/irg-net.com\/wp-content\/uploads\/2022\/02\/1.png?w=1024&amp;ssl=1 1024w, https:\/\/i0.wp.com\/irg-net.com\/wp-content\/uploads\/2022\/02\/1.png?resize=300%2C144&amp;ssl=1 300w, https:\/\/i0.wp.com\/irg-net.com\/wp-content\/uploads\/2022\/02\/1.png?resize=768%2C370&amp;ssl=1 768w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>You will be redirected back to the login screen. Use the default account\u2019s username <strong>root <\/strong>and password set to login.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"497\" src=\"https:\/\/i0.wp.com\/irg-net.com\/wp-content\/uploads\/2022\/02\/2.png?resize=1024%2C497&#038;ssl=1\" alt=\"\" class=\"wp-image-1144\" srcset=\"https:\/\/i0.wp.com\/irg-net.com\/wp-content\/uploads\/2022\/02\/2.png?w=1024&amp;ssl=1 1024w, https:\/\/i0.wp.com\/irg-net.com\/wp-content\/uploads\/2022\/02\/2.png?resize=300%2C146&amp;ssl=1 300w, https:\/\/i0.wp.com\/irg-net.com\/wp-content\/uploads\/2022\/02\/2.png?resize=768%2C373&amp;ssl=1 768w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>The next screen should be a Welcome to GitLab page.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"471\" src=\"https:\/\/i0.wp.com\/irg-net.com\/wp-content\/uploads\/2022\/02\/3.png?resize=1024%2C471&#038;ssl=1\" alt=\"\" class=\"wp-image-1145\" srcset=\"https:\/\/i0.wp.com\/irg-net.com\/wp-content\/uploads\/2022\/02\/3.png?w=1024&amp;ssl=1 1024w, https:\/\/i0.wp.com\/irg-net.com\/wp-content\/uploads\/2022\/02\/3.png?resize=300%2C138&amp;ssl=1 300w, https:\/\/i0.wp.com\/irg-net.com\/wp-content\/uploads\/2022\/02\/3.png?resize=768%2C353&amp;ssl=1 768w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<div style=\"height:34px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>Learn more from the\u00a0<strong><a href=\"https:\/\/docs.gitlab.com\/ee\/README.html\" target=\"_blank\" rel=\"noreferrer noopener\">GitLab documentation<\/a><\/strong>. And thats it, if you have any questions please leave a comment below. \ud83d\ude42<\/p>\n\n\n\n<div style=\"height:34px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n","protected":false},"excerpt":{"rendered":"<p>This guide will walk you through the steps to Install GitLab CE on Debian 10\/11.\u00a0GitLab Community Edition\u00a0(CE) is an open-source application for hosting Git repositories in your own infrastructure. With GitLab you can do project planning and source code management to CI\/CD and monitoring.\u00a0GitLab\u00a0has evolved to become a complete DevOps platform, delivered as a single [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[17,1,22],"tags":[],"class_list":["post-1142","post","type-post","status-publish","format-standard","hentry","category-advancedtutorials","category-blog","category-debian"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Install and Configure GitLab CE on Debian 10 \/ 11 - irgNET<\/title>\n<meta name=\"description\" content=\"Step by Step Tutorial for your own GitLab CE.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/install-and-configure-gitlab-ce-on-debian-10-11\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Install and Configure GitLab CE on Debian 10 \/ 11 - irgNET\" \/>\n<meta property=\"og:description\" content=\"Step by Step Tutorial for your own GitLab CE.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/install-and-configure-gitlab-ce-on-debian-10-11\/\" \/>\n<meta property=\"og:site_name\" content=\"irgNET\" \/>\n<meta property=\"article:published_time\" content=\"2022-02-12T15:05:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/wp-content\/uploads\/2022\/02\/1.png\" \/>\n<meta name=\"author\" content=\"H. Cemre G\u00fcnay\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@irg_net\" \/>\n<meta name=\"twitter:site\" content=\"@irg_net\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"H. Cemre G\u00fcnay\" \/>\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:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/index.php\\\/install-and-configure-gitlab-ce-on-debian-10-11\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/index.php\\\/install-and-configure-gitlab-ce-on-debian-10-11\\\/\"},\"author\":{\"name\":\"H. Cemre G\u00fcnay\",\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/#\\\/schema\\\/person\\\/71b46e79e8c12bdc8e610214a6621a66\"},\"headline\":\"Install and Configure GitLab CE on Debian 10 \\\/ 11\",\"datePublished\":\"2022-02-12T15:05:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/index.php\\\/install-and-configure-gitlab-ce-on-debian-10-11\\\/\"},\"wordCount\":403,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/index.php\\\/install-and-configure-gitlab-ce-on-debian-10-11\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/irg-net.com\\\/wp-content\\\/uploads\\\/2022\\\/02\\\/1.png\",\"articleSection\":[\"Advanced Tutorials\",\"Blog\",\"Debian\"],\"inLanguage\":\"en\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/index.php\\\/install-and-configure-gitlab-ce-on-debian-10-11\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/index.php\\\/install-and-configure-gitlab-ce-on-debian-10-11\\\/\",\"url\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/index.php\\\/install-and-configure-gitlab-ce-on-debian-10-11\\\/\",\"name\":\"Install and Configure GitLab CE on Debian 10 \\\/ 11 - irgNET\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/index.php\\\/install-and-configure-gitlab-ce-on-debian-10-11\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/index.php\\\/install-and-configure-gitlab-ce-on-debian-10-11\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/irg-net.com\\\/wp-content\\\/uploads\\\/2022\\\/02\\\/1.png\",\"datePublished\":\"2022-02-12T15:05:00+00:00\",\"description\":\"Step by Step Tutorial for your own GitLab CE.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/index.php\\\/install-and-configure-gitlab-ce-on-debian-10-11\\\/#breadcrumb\"},\"inLanguage\":\"en\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/index.php\\\/install-and-configure-gitlab-ce-on-debian-10-11\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/index.php\\\/install-and-configure-gitlab-ce-on-debian-10-11\\\/#primaryimage\",\"url\":\"https:\\\/\\\/i0.wp.com\\\/irg-net.com\\\/wp-content\\\/uploads\\\/2022\\\/02\\\/1.png?fit=1024%2C493&ssl=1\",\"contentUrl\":\"https:\\\/\\\/i0.wp.com\\\/irg-net.com\\\/wp-content\\\/uploads\\\/2022\\\/02\\\/1.png?fit=1024%2C493&ssl=1\",\"width\":1024,\"height\":493},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/index.php\\\/install-and-configure-gitlab-ce-on-debian-10-11\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Install and Configure GitLab CE on Debian 10 \\\/ 11\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/#website\",\"url\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/\",\"name\":\"irgNET\",\"description\":\"a virtual Knowledge Base\",\"publisher\":{\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/#organization\",\"name\":\"irg-NET\",\"url\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/i2.wp.com\\\/irg-net.com\\\/wp-content\\\/uploads\\\/2021\\\/06\\\/cropped-FINAL-Removed-Alpha.png?fit=2048%2C2048&ssl=1\",\"contentUrl\":\"https:\\\/\\\/i2.wp.com\\\/irg-net.com\\\/wp-content\\\/uploads\\\/2021\\\/06\\\/cropped-FINAL-Removed-Alpha.png?fit=2048%2C2048&ssl=1\",\"width\":2048,\"height\":2048,\"caption\":\"irg-NET\"},\"image\":{\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/x.com\\\/irg_net\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/h-cemre-g\u00fcnay-2b61601b4\\\/\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UC8GknhO5YMAkAoVxppu6aaQ\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/#\\\/schema\\\/person\\\/71b46e79e8c12bdc8e610214a6621a66\",\"name\":\"H. Cemre G\u00fcnay\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/15f5d90a0ec651cb5003605e56e8ba104f93bc11230562284db56c845df9d54d?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/15f5d90a0ec651cb5003605e56e8ba104f93bc11230562284db56c845df9d54d?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/15f5d90a0ec651cb5003605e56e8ba104f93bc11230562284db56c845df9d54d?s=96&r=g\",\"caption\":\"H. Cemre G\u00fcnay\"},\"sameAs\":[\"http:\\\/\\\/192.168.34.155\\\/wordpress\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Install and Configure GitLab CE on Debian 10 \/ 11 - irgNET","description":"Step by Step Tutorial for your own GitLab CE.","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:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/install-and-configure-gitlab-ce-on-debian-10-11\/","og_locale":"en_US","og_type":"article","og_title":"Install and Configure GitLab CE on Debian 10 \/ 11 - irgNET","og_description":"Step by Step Tutorial for your own GitLab CE.","og_url":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/install-and-configure-gitlab-ce-on-debian-10-11\/","og_site_name":"irgNET","article_published_time":"2022-02-12T15:05:00+00:00","og_image":[{"url":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/wp-content\/uploads\/2022\/02\/1.png","type":"","width":"","height":""}],"author":"H. Cemre G\u00fcnay","twitter_card":"summary_large_image","twitter_creator":"@irg_net","twitter_site":"@irg_net","twitter_misc":{"Written by":"H. Cemre G\u00fcnay","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/install-and-configure-gitlab-ce-on-debian-10-11\/#article","isPartOf":{"@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/install-and-configure-gitlab-ce-on-debian-10-11\/"},"author":{"name":"H. Cemre G\u00fcnay","@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/#\/schema\/person\/71b46e79e8c12bdc8e610214a6621a66"},"headline":"Install and Configure GitLab CE on Debian 10 \/ 11","datePublished":"2022-02-12T15:05:00+00:00","mainEntityOfPage":{"@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/install-and-configure-gitlab-ce-on-debian-10-11\/"},"wordCount":403,"commentCount":0,"publisher":{"@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/#organization"},"image":{"@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/install-and-configure-gitlab-ce-on-debian-10-11\/#primaryimage"},"thumbnailUrl":"https:\/\/irg-net.com\/wp-content\/uploads\/2022\/02\/1.png","articleSection":["Advanced Tutorials","Blog","Debian"],"inLanguage":"en","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/install-and-configure-gitlab-ce-on-debian-10-11\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/install-and-configure-gitlab-ce-on-debian-10-11\/","url":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/install-and-configure-gitlab-ce-on-debian-10-11\/","name":"Install and Configure GitLab CE on Debian 10 \/ 11 - irgNET","isPartOf":{"@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/install-and-configure-gitlab-ce-on-debian-10-11\/#primaryimage"},"image":{"@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/install-and-configure-gitlab-ce-on-debian-10-11\/#primaryimage"},"thumbnailUrl":"https:\/\/irg-net.com\/wp-content\/uploads\/2022\/02\/1.png","datePublished":"2022-02-12T15:05:00+00:00","description":"Step by Step Tutorial for your own GitLab CE.","breadcrumb":{"@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/install-and-configure-gitlab-ce-on-debian-10-11\/#breadcrumb"},"inLanguage":"en","potentialAction":[{"@type":"ReadAction","target":["https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/install-and-configure-gitlab-ce-on-debian-10-11\/"]}]},{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/install-and-configure-gitlab-ce-on-debian-10-11\/#primaryimage","url":"https:\/\/i0.wp.com\/irg-net.com\/wp-content\/uploads\/2022\/02\/1.png?fit=1024%2C493&ssl=1","contentUrl":"https:\/\/i0.wp.com\/irg-net.com\/wp-content\/uploads\/2022\/02\/1.png?fit=1024%2C493&ssl=1","width":1024,"height":493},{"@type":"BreadcrumbList","@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/install-and-configure-gitlab-ce-on-debian-10-11\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/"},{"@type":"ListItem","position":2,"name":"Install and Configure GitLab CE on Debian 10 \/ 11"}]},{"@type":"WebSite","@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/#website","url":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/","name":"irgNET","description":"a virtual Knowledge Base","publisher":{"@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en"},{"@type":"Organization","@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/#organization","name":"irg-NET","url":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/","logo":{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/#\/schema\/logo\/image\/","url":"https:\/\/i2.wp.com\/irg-net.com\/wp-content\/uploads\/2021\/06\/cropped-FINAL-Removed-Alpha.png?fit=2048%2C2048&ssl=1","contentUrl":"https:\/\/i2.wp.com\/irg-net.com\/wp-content\/uploads\/2021\/06\/cropped-FINAL-Removed-Alpha.png?fit=2048%2C2048&ssl=1","width":2048,"height":2048,"caption":"irg-NET"},"image":{"@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/irg_net","https:\/\/www.linkedin.com\/in\/h-cemre-g\u00fcnay-2b61601b4\/","https:\/\/www.youtube.com\/channel\/UC8GknhO5YMAkAoVxppu6aaQ"]},{"@type":"Person","@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/#\/schema\/person\/71b46e79e8c12bdc8e610214a6621a66","name":"H. Cemre G\u00fcnay","image":{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/secure.gravatar.com\/avatar\/15f5d90a0ec651cb5003605e56e8ba104f93bc11230562284db56c845df9d54d?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/15f5d90a0ec651cb5003605e56e8ba104f93bc11230562284db56c845df9d54d?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/15f5d90a0ec651cb5003605e56e8ba104f93bc11230562284db56c845df9d54d?s=96&r=g","caption":"H. Cemre G\u00fcnay"},"sameAs":["http:\/\/192.168.34.155\/wordpress"]}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack-related-posts":[],"_links":{"self":[{"href":"https:\/\/irg-net.com\/index.php\/wp-json\/wp\/v2\/posts\/1142","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/irg-net.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/irg-net.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/irg-net.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/irg-net.com\/index.php\/wp-json\/wp\/v2\/comments?post=1142"}],"version-history":[{"count":7,"href":"https:\/\/irg-net.com\/index.php\/wp-json\/wp\/v2\/posts\/1142\/revisions"}],"predecessor-version":[{"id":1169,"href":"https:\/\/irg-net.com\/index.php\/wp-json\/wp\/v2\/posts\/1142\/revisions\/1169"}],"wp:attachment":[{"href":"https:\/\/irg-net.com\/index.php\/wp-json\/wp\/v2\/media?parent=1142"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/irg-net.com\/index.php\/wp-json\/wp\/v2\/categories?post=1142"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/irg-net.com\/index.php\/wp-json\/wp\/v2\/tags?post=1142"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}