In the current Internet era, version control tools are a must for technical personnel. Git is one of the most popular version control tools currently, and GitLab is an open source platform for managing Git repositories and a powerful integrated development environment (IDE). Although the Chinese version of GitLab has an official installation tutorial, the process of installing GitLab may be very difficult for those who are not familiar with Linux systems. For everyone's convenience, someone in the community has developed a one-click installation package for the Chinese version of GitLab, making the installation process more convenient.
Preparation before installation
Before using the one-click installation package, you need to install the Linux version suitable for the current system. When choosing a Linux system, you need to pay attention to its version and architecture, and check whether the corresponding dependent libraries and software, such as curl, vim, openssh, etc., are installed. In addition, in order to avoid conflicts, it is recommended to set the default port number to another unoccupied port number.
Download the one-click installation package of GitLab
Downloading the one-click installation package of the Chinese version of GitLab can be achieved by accessing the corresponding software library on GitHub. Enter this page, find the GitLab one-click installation package suitable for the current system, and download it to the installation path.
Resolve dependencies
After the download is completed, you need to install some dependencies first. Run the following command in the terminal:
sudo apt-get update sudo apt-get install -y curl openssh-server ca-certificates
If you are using CentOS or Fedora, please use the following command:
sudo yum install -y curl policycoreutils-python openssh-server openssh-clients sudo systemctl enable sshd sudo systemctl start sshd sudo firewall-cmd --permanent --add-service=http sudo systemctl reload firewalld
Install and configure GitLab
If you download the installation package, You need to extract the compressed package and use the following command to install it in the corresponding directory:
sudo EXTERNAL_URL="http://example.com" apt-get install gitlab-ce
Among them, you need to replace http://example.com
with the domain name of the GitLab server or IP address. After the installation is complete, the default port of GitLab is 80. You can check whether GitLab has been installed successfully by running the following command:
sudo gitlab-ctl status
If you see output similar to the following, it means that GitLab has been installed successfully. You can use your web browser to Access GitLab:
run: logrotate: (pid XXX) XXs; run: log: (pid XXXX) XXXs run: nginx: (pid XXX) XXs; run: log: (pid XXXX) XXXs run: postgresql: (pid XXX) XXs; run: log: (pid XXXX) XXXs run: redis: (pid XXX) XXs; run: log: (pid XXXX) XXXs run: sidekiq: (pid XXX) XXs; run: log: (pid XXXX) XXXs run: unicorn: (pid XXX) XXs; run: log: (pid XXXX) XXXs
If unfortunately, you get an error message, you can troubleshoot by running the following command:
sudo gitlab-ctl tail
The above command will display the last 10 lines of the log file used by GitLab , you can look up error messages for debugging.
Finally, we need to configure the relevant information of the Chinese version of GitLab, including mail server, user permissions, etc. The configuration details of the Chinese version of GitLab can be found in the official GitLab documentation and configured according to the actual situation.
In this article, we introduce how to use the GitLab Chinese version one-click installation package to install GitLab conveniently and quickly on a Linux server. If you have interest and needs in GitLab and Linux management, you can try and learn more, which will be very helpful for you to further master the technology.
The above is the detailed content of Let's talk about how to install the Chinese version of gitlab with one click. For more information, please follow other related articles on the PHP Chinese website!