Home > Article > Development Tools > How to install and configure gitlab on centos (detailed method)
When doing software development, version control is an essential task that helps with team collaboration and code management. GitLab is a popular open source software that is popular due to its user-friendly interface and powerful features. This article will introduce how to install and configure GitLab on CentOS.
1. Environment required to install GitLab
Before installing GitLab, we need to install some necessary software packages:
sudo yum -y update
sudo yum -y install postfix sudo systemctl enable postfix sudo systemctl start postfix
sudo yum -y install openssl-devel
sudo yum -y install wget
2. Install and set up GitLab
sudo yum -y update
sudo wget https://packages.gitlab.com/install/repositories/gitlab/gitlab-ee/script.rpm.sh sudo chmod +x script.rpm.sh sudo ./script.rpm.sh
sudo EXTERNAL_URL="https://gitlab.example.com" yum install -y gitlab-ee
(Note: Change "https://gitlab.example.com" to your own Domain name)
sudo systemctl start gitlab-runsvdir.service
sudo gitlab-ctl reconfigure sudo gitlab-rake gitlab:setup
3. Configure GitLab
sudo vim /etc/gitlab/gitlab.rb
In the editor, find the following line and modify to the desired port number:
#gitlab_rails['gitlab_shell_ssh_port'] = 22 gitlab_rails['gitlab_shell_ssh_port'] = 1234
(Note: Change 1234 to the new port number you want to use)
sudo gitlab-ctl reconfigure
sudo firewall-cmd --permanent --zone=public --add-port=1234/tcp sudo firewall-cmd --reload
IV. Summary
When installing and configuring GitLab, always remember to make sure you install Latest version and configure all settings correctly. By using GitLab correctly, you can increase your team's productivity and make it easier to manage and track version control of your code.
The above is the detailed content of How to install and configure gitlab on centos (detailed method). For more information, please follow other related articles on the PHP Chinese website!