{"id":833,"date":"2018-07-27T02:28:52","date_gmt":"2018-07-27T07:28:52","guid":{"rendered":"https:\/\/www.linuxcloudvps.com\/blog\/?p=833"},"modified":"2018-07-27T02:28:52","modified_gmt":"2018-07-27T07:28:52","slug":"how-to-install-gitlab-on-centos-7","status":"publish","type":"post","link":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-gitlab-on-centos-7\/","title":{"rendered":"How to Install GitLab on CentOS 7"},"content":{"rendered":"<p>In this article, we are going to show you how to install GitLab on CentOS 7. GitLab is Rails-based open source repository manager developed by GitLab Inc. GitLab is very useful for teamwork because is web-based git repository manager and it&#8217;s easy to deploy, code or test applications. It supports functions such as code reviews, issue tracking and activity feeds and that&#8217;s just a few of the features this application has. GitLab comes in Community Edition (self-hosted and free) and Enterprise Edition (self-hosted and paid).<!--more--><br \/>\nIn this article, we are going to use the &#8216;omnibus&#8217; package for installation provided by GitLab.<\/p>\n<h3>Prerequisites<\/h3>\n<ul>\n<li>CentOS 7 server &#8211; 64bit<\/li>\n<li>Min RAM 2GB<\/li>\n<li>Root privileges<\/li>\n<\/ul>\n<h2>1. Log in to the server and update the system<\/h2>\n<p>Login to your <a href=\"https:\/\/www.linuxcloudvps.com\/centos-cloud-vps.html\">CentOS 7 VPS<\/a> via SSH as user root<\/p>\n<pre>ssh root@IP_Address -p Port_number<\/pre>\n<p>Update all packages<\/p>\n<p>Once you are logged in to the server you can type the following command for updating the installed packages:<\/p>\n<pre>sudo yum -y update<\/pre>\n<h2>2. Install the necessary dependencies<\/h2>\n<p>In this step, we will download and install the packages that are required to install GitLab.<\/p>\n<p>With the following yum command we will install all of this packages:<\/p>\n<pre>sudo yum install -y curl policycoreutils-python openssh-server<\/pre>\n<p>With the next commands we will enable and start SSH:<\/p>\n<pre>sudo systemctl enable sshd\r\nsudo systemctl start sshd<\/pre>\n<p>If you are using a firewall you should grant HTTP access:<\/p>\n<pre>sudo firewall-cmd --permanent --add-service=http\r\nsudo systemctl reload firewalld<\/pre>\n<p>Next, we will install Postfix so we can send notification emails.<\/p>\n<pre>sudo yum install postfix\r\nsudo systemctl enable postfix\r\nsudo systemctl start postfix<\/pre>\n<p>A configuration screen may appear during Postfix installation. Please select &#8220;Internet Site&#8221; and press Enter. Use an external DNS on your server for &#8216;mail name&#8217; and press enter. If additional screens appear, continue pressing enter to accept the default values.<\/p>\n<h2>3. Add and install the GitLab repository package<\/h2>\n<p>We will add the GitLab package repository with the following command:<\/p>\n<pre>curl https:\/\/packages.gitlab.com\/install\/repositories\/gitlab\/gitlab-ee\/script.rpm.sh | sudo bash<\/pre>\n<p>After we add the package repository we should proceed to install the GitLab package. Change &#8216;http:\/\/your_domain.com&#8217; to the URL that you will use to access the GitLab instance. With setting up this URL installation script will automatically configure and launch GitLab on that URL. With the following yum command install GitLab:<\/p>\n<pre>sudo EXTERNAL_URL=&quot;http:\/\/your_domain.com&quot; yum install -y gitlab-ee<\/pre>\n<p>If you followed the upper instruction, now you have installed GitLab CE on your CentOS 7 server.<\/p>\n<h2>4. First visit at GitLab<\/h2>\n<p>When you browse the you_domian.com for the first time, you will be redirected to the reset password screen. After changing the password for the administrator account and you will be redirected back to the login screen. You can use root as default account username to log in.<\/p>\n<h2>5. Generate DHPARAM and Let&#8217;s encrypt SSL certificates<\/h2>\n<p>We will show you how to install free Let&#8217;s Encrypt SSL certificate for our GitLab website and additionally we will generate a DHPARAM certificate to add an additional security layer. First we need the letsencrypt command tool so we can generate Let&#8217;s Encrypt certificate. We can install the Letsencrypt tool on CentOS 7 with the following command:<\/p>\n<pre>sudo yum -y install letsencrypt<\/pre>\n<p>With the command below you can proceed with the generating a new SSL certificate from Let&#8217;s Encrypt.<\/p>\n<pre>sudo letsencrypt certonly --standalone -d your_domain.com<\/pre>\n<p>After you enter this command you should get:<\/p>\n<pre>Saving debug log to \/var\/log\/letsencrypt\/letsencrypt.log\r\nPlugins selected: Authenticator standalone, Installer None\r\nEnter email address (used for urgent renewal and security notices) (Enter &#039;c&#039; to\r\ncancel):<\/pre>\n<p>You can enter your email address and press Enter to continue.<\/p>\n<p>Starting new HTTPS connection (1): acme-v01.api.letsencrypt.org<\/p>\n<pre>-------------------------------------------------------------------------------\r\nPlease read the Terms of Service at\r\nhttps:\/\/letsencrypt.org\/documents\/LE-SA-v1.2-November-15-2017.pdf. You must\r\nagree in order to register with the ACME server at\r\nhttps:\/\/acme-v01.api.letsencrypt.org\/directory\r\n-------------------------------------------------------------------------------\r\n(A)gree\/(C)ancel:<\/pre>\n<p>In this step type &#8216;A&#8217; so you Agree the Terms of Service and press Enter to continue.<\/p>\n<pre>-------------------------------------------------------------------------------\r\nWould you be willing to share your email address with the Electronic Frontier\r\nFoundation, a founding partner of the Let&#039;s Encrypt project and the non-profit\r\norganization that develops Certbot? We&#039;d like to send you email about our work\r\nencrypting the web, EFF news, campaigns, and ways to support digital freedom.\r\n-------------------------------------------------------------------------------\r\n(Y)es\/(N)o:<\/pre>\n<p>This last step is optional, you can also select &#8216;Y&#8217; or &#8216;N&#8217; and continue so you can allow the script to complete the installation of the Let&#8217;s Encrypt SSL certificate for your domain.<\/p>\n<p>Please note: if the installation of the SSL certificate is not successful you can stop for the moment the GitLab application with <strong>sudo systemctl stop gitlab-runsvdir<\/strong> and run the script again. After the Let&#8217;s Encrypt bot will finish his job, just run the GitLab application again with the command: <strong>sudo systemctl start gitlab-runsvdir<\/strong><\/p>\n<p>Next, we will create new &#8216;ssl&#8217; directory at location &#8216;\/etc\/gitlab\/&#8217; which is under the GitLab configuration.<\/p>\n<pre>sudo mkdir -p \/etc\/gitlab\/ssl\/<\/pre>\n<p>Next step is to generate the DHPARAM certificate pem file with OpenSSL. So follow the below command to generate the DHPARAM certificate:<\/p>\n<pre>sudo openssl dhparam -out \/etc\/gitlab\/ssl\/dhparams.pem 2048<\/pre>\n<p>When the process is complete, change the permission to 600 of the certificate file.<\/p>\n<pre>sudo chmod 600 \/etc\/gitlab\/ssl\/*<\/pre>\n<p>Congratulation, now you have generated SSL Letsencrypt and DHPARAM certificate for the GitLab.<\/p>\n<h2>6. Enable HTTPS for GitLab<\/h2>\n<p>At this stage, we will enable HTTPS and forward HTTP to the HTTPS connection in order to use the certificates we have already generated using the OpenSSL command and Let&#8217;s Encrypt.<\/p>\n<p>To configure GitLab, we need to edit the configuration file &#8216;gitlab.rb&#8217; as the following examples:<\/p>\n<pre>cd \/etc\/gitlab\/\r\nnano gitlab.rb<\/pre>\n<p>Change the external_url from HTTP to HTTPS:<\/p>\n<pre>external_url &#039;https:\/\/your_domain.com&#039;<\/pre>\n<p>Now uncomment and modify the following configuration as the example below:<\/p>\n<pre>nginx[&#039;redirect_http_to_https&#039;] = true\r\nnginx[&#039;ssl_certificate&#039;] = &quot;\/etc\/letsencrypt\/live\/your_domain.com\/fullchain.pem&quot;\r\nnginx[&#039;ssl_certificate_key&#039;] = &quot;\/etc\/letsencrypt\/live\/your_domain.com\/privkey.pem&quot;\r\nnginx[&#039;ssl_dhparam&#039;] = &quot;\/etc\/gitlab\/ssl\/dhparams.pem&quot;<\/pre>\n<p>Save the changes and exit nano.<\/p>\n<p>Please note: Do not forget to change your_domain.com with the domain you used to configure GitLab.<\/p>\n<p>By using the following command, we will apply the GitLab configuration:<\/p>\n<pre>sudo gitlab-ctl reconfigure<\/pre>\n<p>In summary, we just finished with the installation of GitLab Community edition. We installed Let&#8217;s Encrypt SSL and added an additional layer of security by generating a DHPARAM certificate with OpenSSL and we all finished in the last part by enabling GitLab to work on HTTPS. For more information about GitLab, you can check their official website documentation at https:\/\/docs.gitlab.com\/<\/p>\n<hr \/>\n<p><img decoding=\"async\" class=\"size-full wp-image-835 alignleft\" src=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2018\/07\/Install-GitLab-on-CentOS-7.jpg\" alt=\"Install GitLab on CentOS 7\" width=\"150\" height=\"167\" \/>Of course, you don\u2019t have to install GitLab on your <a href=\"https:\/\/www.linuxcloudvps.com\/centos-cloud-vps.html\">CentOS 7 VPS<\/a> if you use one of our <a href=\"https:\/\/www.linuxcloudvps.com\/\">Managed Hosting Services<\/a>, in which case you can simply ask our expert Linux admins to install GitLab for you. They are available 24\u00d77 and will take care of your request immediately.<\/p>\n<p><code>PS.<\/code> If you liked this post, on How to Install GitLab on CentOS 7, please share it with your friends on the social networks using the buttons below or simply leave a comment in the comments section. Thanks.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this article, we are going to show you how to install GitLab on CentOS 7. GitLab is Rails-based open source repository manager developed by GitLab Inc. GitLab is very useful for teamwork because is web-based git repository manager and it&#8217;s easy to deploy, code or test applications. It supports functions such as code reviews, &#8230; <a title=\"How to Install GitLab on CentOS 7\" class=\"read-more\" href=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-gitlab-on-centos-7\/\" aria-label=\"More on How to Install GitLab on CentOS 7\">Read more<\/a><\/p>\n","protected":false},"author":2,"featured_media":834,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[13],"tags":[22,157],"class_list":["post-833","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","tag-centos","tag-gitlab"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Install GitLab on CentOS 7 | LinuxCloudVPS Blog<\/title>\n<meta name=\"description\" content=\"In this article, we are going to show you how to install GitLab on CentOS 7. GitLab is Rails-based open source repository manager developed by GitLab Inc.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-gitlab-on-centos-7\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install GitLab on CentOS 7 | LinuxCloudVPS Blog\" \/>\n<meta property=\"og:description\" content=\"In this article, we are going to show you how to install GitLab on CentOS 7. GitLab is Rails-based open source repository manager developed by GitLab Inc.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-gitlab-on-centos-7\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxCloudVPS Blog\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/www.facebook.com\/LinuxCloudVPS\" \/>\n<meta property=\"article:published_time\" content=\"2018-07-27T07:28:52+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2018\/07\/How-to-Install-GitLab-on-CentOS-7.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"600\" \/>\n\t<meta property=\"og:image:height\" content=\"300\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@LinuxCloudVPS\" \/>\n<meta name=\"twitter:site\" content=\"@LinuxCloudVPS\" \/>\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=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-gitlab-on-centos-7\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-gitlab-on-centos-7\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/person\\\/ed907227ee7d151c617e6d0fe74f531a\"},\"headline\":\"How to Install GitLab on CentOS 7\",\"datePublished\":\"2018-07-27T07:28:52+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-gitlab-on-centos-7\\\/\"},\"wordCount\":940,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-gitlab-on-centos-7\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/07\\\/How-to-Install-GitLab-on-CentOS-7.jpg\",\"keywords\":[\"centos\",\"gitlab\"],\"articleSection\":[\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-gitlab-on-centos-7\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-gitlab-on-centos-7\\\/\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-gitlab-on-centos-7\\\/\",\"name\":\"How to Install GitLab on CentOS 7 | LinuxCloudVPS Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-gitlab-on-centos-7\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-gitlab-on-centos-7\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/07\\\/How-to-Install-GitLab-on-CentOS-7.jpg\",\"datePublished\":\"2018-07-27T07:28:52+00:00\",\"description\":\"In this article, we are going to show you how to install GitLab on CentOS 7. GitLab is Rails-based open source repository manager developed by GitLab Inc.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-gitlab-on-centos-7\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-gitlab-on-centos-7\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-gitlab-on-centos-7\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/07\\\/How-to-Install-GitLab-on-CentOS-7.jpg\",\"contentUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/07\\\/How-to-Install-GitLab-on-CentOS-7.jpg\",\"width\":600,\"height\":300,\"caption\":\"How to Install GitLab on CentOS 7\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-gitlab-on-centos-7\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install GitLab on CentOS 7\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\",\"name\":\"LinuxCloudVPS\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\",\"name\":\"LinuxCloudVPS\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/logo.png\",\"width\":217,\"height\":25,\"caption\":\"LinuxCloudVPS\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"http:\\\/\\\/www.facebook.com\\\/LinuxCloudVPS\",\"https:\\\/\\\/x.com\\\/LinuxCloudVPS\",\"http:\\\/\\\/www.linkedin.com\\\/company\\\/linuxcloudvps-com\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/person\\\/ed907227ee7d151c617e6d0fe74f531a\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"http:\\\/\\\/www.linuxcloudvps.com\\\/\"],\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/author\\\/r0s3admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install GitLab on CentOS 7 | LinuxCloudVPS Blog","description":"In this article, we are going to show you how to install GitLab on CentOS 7. GitLab is Rails-based open source repository manager developed by GitLab Inc.","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:\/\/www.linuxcloudvps.com\/blog\/how-to-install-gitlab-on-centos-7\/","og_locale":"en_US","og_type":"article","og_title":"How to Install GitLab on CentOS 7 | LinuxCloudVPS Blog","og_description":"In this article, we are going to show you how to install GitLab on CentOS 7. GitLab is Rails-based open source repository manager developed by GitLab Inc.","og_url":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-gitlab-on-centos-7\/","og_site_name":"LinuxCloudVPS Blog","article_publisher":"http:\/\/www.facebook.com\/LinuxCloudVPS","article_published_time":"2018-07-27T07:28:52+00:00","og_image":[{"width":600,"height":300,"url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2018\/07\/How-to-Install-GitLab-on-CentOS-7.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@LinuxCloudVPS","twitter_site":"@LinuxCloudVPS","twitter_misc":{"Written by":"admin","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-gitlab-on-centos-7\/#article","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-gitlab-on-centos-7\/"},"author":{"name":"admin","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a"},"headline":"How to Install GitLab on CentOS 7","datePublished":"2018-07-27T07:28:52+00:00","mainEntityOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-gitlab-on-centos-7\/"},"wordCount":940,"commentCount":0,"publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-gitlab-on-centos-7\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2018\/07\/How-to-Install-GitLab-on-CentOS-7.jpg","keywords":["centos","gitlab"],"articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-gitlab-on-centos-7\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-gitlab-on-centos-7\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-gitlab-on-centos-7\/","name":"How to Install GitLab on CentOS 7 | LinuxCloudVPS Blog","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-gitlab-on-centos-7\/#primaryimage"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-gitlab-on-centos-7\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2018\/07\/How-to-Install-GitLab-on-CentOS-7.jpg","datePublished":"2018-07-27T07:28:52+00:00","description":"In this article, we are going to show you how to install GitLab on CentOS 7. GitLab is Rails-based open source repository manager developed by GitLab Inc.","breadcrumb":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-gitlab-on-centos-7\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-gitlab-on-centos-7\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-gitlab-on-centos-7\/#primaryimage","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2018\/07\/How-to-Install-GitLab-on-CentOS-7.jpg","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2018\/07\/How-to-Install-GitLab-on-CentOS-7.jpg","width":600,"height":300,"caption":"How to Install GitLab on CentOS 7"},{"@type":"BreadcrumbList","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-gitlab-on-centos-7\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.linuxcloudvps.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install GitLab on CentOS 7"}]},{"@type":"WebSite","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website","url":"https:\/\/www.linuxcloudvps.com\/blog\/","name":"LinuxCloudVPS","description":"","publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.linuxcloudvps.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization","name":"LinuxCloudVPS","url":"https:\/\/www.linuxcloudvps.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png","width":217,"height":25,"caption":"LinuxCloudVPS"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["http:\/\/www.facebook.com\/LinuxCloudVPS","https:\/\/x.com\/LinuxCloudVPS","http:\/\/www.linkedin.com\/company\/linuxcloudvps-com"]},{"@type":"Person","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","caption":"admin"},"sameAs":["http:\/\/www.linuxcloudvps.com\/"],"url":"https:\/\/www.linuxcloudvps.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/833","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/comments?post=833"}],"version-history":[{"count":1,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/833\/revisions"}],"predecessor-version":[{"id":836,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/833\/revisions\/836"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media\/834"}],"wp:attachment":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media?parent=833"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/categories?post=833"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/tags?post=833"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}