Home> Development Tools> git> body text

centos7 installs the latest stable version of gitlab

WBOY
Release: 2023-05-17 11:48:37
Original
715 people have browsed it

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
Copy after login

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
Copy after login

Now, we can use yum to install GitLab. Use the following command:

sudo EXTERNAL_URL="http://gitlab.example.com" yum install -y gitlab-ee
Copy after login

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.

  1. 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
Copy after login

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
Copy after login

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.

  1. 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
Copy after login

Add the following content in the /etc/gitlab/gitlab.rb file:

external_url 'http://gitlab.example.com:9080'
Copy after login

We can also use HTTPS, just change the external_url configuration to https.

  1. 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
Copy after login

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!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!