Cloud server build Gitlab

Foreword:

As a programmer, we usually have some code summarised by ourselves, and we have to save it. It is inevitable that our own code warehouse is indispensable. We usually use SVN and Gitlab more frequently. Today, I will share to build a private gitlab service of my own on the cloud server. (I am using Tencent Cloud centos 7 64bit system here)

Construction steps:

1. Install dependent software

yum -y install policycoreutils openssh-server openssh-clients postfix

2. Set postfix to start and start automatically after booting, postfix supports gitlab sending function

systemctl enable postfix && systemctl start postfix

3. Download the gitlab installation package and install it.
Note: The official website provides two versions of GitLab ÿ

Guess you like

Origin blog.csdn.net/weixin_44146379/article/details/107841907