In the development team, the version control tool Git has become an essential tool. GitLab is a Web platform based on Git. Based on Git, it provides multiple functions such as code hosting, issue tracking, and CI/CD pipelines, which can help teams develop software more efficiently. This article will introduce how to install the latest stable version of GitLab on CentOS 7 system.
Step one: Install the required dependent software
Before installing GitLab, we need to install several necessary software packages. Use the following command to install:
sudo yum install curl policycoreutils openssh-server openssh-clients postfix
Among them, Postfix is a mail transfer agent software and must be installed first.
Step 2: Install GitLab
Before installing GitLab, you must first add the GitLab repository. Use the following command:
curl https://packages.gitlab.com/install/repositories/gitlab/gitlab-ee/script.rpm.sh | sudo bash
Now, we can use yum to install GitLab. Use the following command:
sudo EXTERNAL_URL="http://gitlab.example.com" yum install -y gitlab-ee
Please note that the "http://gitlab.example.com" in the above command is the actual hostname or IP address you are using. If you need to use HTTPS, just change the address to https and also configure the certificate for nginx.
Wait for the installation process to finish.
Step 3: Configure GitLab
After the installation is completed, we need to perform some necessary configurations on GitLab, including email service, Domain name configuration, etc.
- Configuring the email service
GitLab relies on the email service to send notification emails. You can use Postfix or SMTP server. Here we introduce how to use SMTP server.
Open the /etc/gitlab/gitlab.rb file and search for SMTP settings.
sudo vim /etc/gitlab/gitlab.rb
Add the following content at the end, save and exit:
gitlab_rails['smtp_enable'] = true gitlab_rails['smtp_address'] = "smtp.gmail.com" gitlab_rails['smtp_port'] = 587 gitlab_rails['smtp_user_name'] = "your-email@gmail.com" gitlab_rails['smtp_password'] = "your-email-password" gitlab_rails['smtp_authentication'] = "login" gitlab_rails['smtp_enable_starttls_auto'] = true gitlab_rails['smtp_tls'] = false
In the above code, we used Gmail as the SMTP server and configured your email address and password. You can change it according to your needs.
- Configuring the domain name
Before configuring the domain name, we need to confirm whether the firewall has been set up correctly. GitLab requires TCP ports 80 and 443 to be open.
sudo firewall-cmd --zone=public --add-port=80/tcp --permanent sudo firewall-cmd --zone=public --add-port=443/tcp --permanent sudo firewall-cmd --reload
Add the following content in the /etc/gitlab/gitlab.rb file:
external_url 'http://gitlab.example.com:9080'
We can also use HTTPS, just change the external_url configuration to https.
- Reconfigure GitLab
After completing the above configuration, we need to reconfigure GitLab for the changes to take effect. Use the following command to reconfigure:
sudo gitlab-ctl reconfigure
After the configuration is completed, you can use the browser to access the GitLab interface and start using it.
Summary
GitLab is a powerful Git-based team collaboration platform that can facilitate team development. In this article, we introduce how to install the latest stable version of GitLab on CentOS7, we hope it will be helpful to you.
The above is the detailed content of centos7 installs the latest stable version of gitlab. For more information, please follow other related articles on the PHP Chinese website!

This article provides a guide to Git management, covering GUI tools (Sourcetree, GitKraken, etc.), essential commands (git init, git clone, git add, git commit, etc.), branch management best practices (feature branches, pull requests), and merge con

This guide explains how to push a single Git commit to a remote branch. It details using a temporary branch to isolate the commit, pushing this branch to the remote, and then optionally deleting the temporary branch. This method avoids conflicts and

This article addresses common Git commit failures. It details troubleshooting steps for issues like untracked files, unstaged changes, merge conflicts, and pre-commit hooks. Solutions and preventative measures are provided to ensure smoother Git wo

This article details methods for viewing Git commit content. It focuses on using git show to display commit messages, author info, and changes (diffs), git log -p for multiple commits' diffs, and cautions against directly checking out commits. Alt

This article explains the difference between Git's commit and push commands. git commit saves changes locally, while git push uploads these committed changes to a remote repository. The article highlights the importance of understanding this distin

This article explains the distinct roles of git add and git commit in Git. git add stages changes, preparing them for inclusion in the next commit, while git commit saves the staged changes to the repository's history. This two-step process enables

This article introduces Git, a distributed version control system. It highlights Git's advantages over centralized systems, such as offline capabilities and efficient branching/merging for enhanced collaboration. The article also details learning r

This beginner's guide introduces Git, a version control system. It covers basic commands (init, add, commit, status, log, branch, checkout, merge, push, pull) and resolving merge conflicts. Best practices for efficient Git use, including clear comm


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

SublimeText3 Chinese version
Chinese version, very easy to use
