


CentOS GitLab Installation and Configuration Tutorial
GitLab is an open source Git warehouse management system that supports multi-person collaborative development, code warehouse management and version control. GitLab comes with a variety of features, such as code hosting, CI/CD, issue tracking, and more. This tutorial explains how to install and configure GitLab Server on CentOS.
1. CentOS system environment preparation
- Installation dependencies: GitLab requires PostgreSQL and Redis database support, we need to install them:
# 安装 PostgreSQL 和 Redis sudo yum install -y postgresql-server postgresql-contrib redis
- Start the PostgreSQL and Redis services:
sudo systemctl start postgresql sudo systemctl start redis
- Configure the PostgreSQL database: GitLab needs a database to store data, we need to create a GitLab database in PostgreSQL:
sudo -i -u postgres psql
postgres=# CREATE USER git CREATEDB; postgres=# CREATE DATABASE gitlabhq_production OWNER git; postgres=# ALTER USER git WITH ENCRYPTED password 'password'; postgres=# \q exit
2. Install GitLab
- Install GitLab:
# 添加 GitLab 源 curl https://packages.gitlab.com/install/repositories/gitlab/gitlab-ee/script.rpm.sh | sudo bash sudo yum install -y gitlab-ee
- Modify GitLab configuration file:
sudo vim /etc/gitlab/gitlab.rb
- Modify as follows:
## 配置 GitLab 的外部 URL external_url 'http://{YOUR_SERVER_NAME_OR_IP}' ## 配置SMTP gitlab_rails['smtp_enable'] = true gitlab_rails['smtp_address'] = "smtp.qq.com" gitlab_rails['smtp_port'] = 587 gitlab_rails['smtp_user_name'] = "your-email@qq.com" # 发送人邮箱 gitlab_rails['smtp_password'] = "your-password" # 发送人 QQ 邮箱授权码 gitlab_rails['smtp_authentication'] = "login" gitlab_rails['smtp_enable_starttls_auto'] = true gitlab_rails['gitlab_email_from'] = 'your-email@qq.com' # 发件人邮箱 # 配置 Nginx nginx['enable'] = false ################# # OAUTH2 CONFIGS # ################# gitlab_rails['omniauth_enabled'] = true gitlab_rails['omniauth_allow_single_sign_on'] = true gitlab_rails['omniauth_block_auto_created_users'] = false gitlab_rails['omniauth_auto_link_ldap_user'] = false gitlab_rails['ldap_enabled'] = false # 支持中文 gitlab_workhorse['env'] = { "LANG" => "zh_CN.UTF-8", "LC_ALL" => "zh_CN.UTF-8" }
- Make the changes effective:
sudo gitlab-ctl reconfigure
3. Visit GitLab
- Visit the following URL:
http://{YOUR_SERVER_NAME_OR_IP}
- Use default administrator access:
用户名: root 密码: 5iveL!fe
4. Solving common problems
- How to start, stop or reconfigure GitLab?
# 启动 sudo gitlab-ctl start # 停止 sudo gitlab-ctl stop # 更改 sudo gitlab-ctl reconfigure
- How to upgrade GitLab server?
## 1. 升级软件源 curl https://packages.gitlab.com/install/repositories/gitlab/gitlab-ee/script.rpm.sh | sudo bash ## 2. 安装新版 sudo yum install -y gitlab-ee ## 3. 在更新配置文件和升级后重新配置 sudo gitlab-ctl reconfigure
5. Summary
This article introduces the steps to install and configure GitLab server in CentOS system. I hope this article can help developers manage and version control Git repositories on their own servers.
The above is the detailed content of Detailed explanation of CentOS GitLab installation and configuration tutorial. 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 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 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 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 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

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


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

Dreamweaver Mac version
Visual web development tools

SublimeText3 Chinese version
Chinese version, very easy to use

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

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft
