构建GitLab代码私有仓库

07-12 1118阅读

构建代码私有仓库

公司代码仓库一般都放在git上,但为了安全一般都不会放在开放的git上,都会搭建自己的仓库,今天就记录一下git搭建的过程。以下安装过程以centos7为例:

步骤一:安装并配置依赖项,同时打开http访问和ssh访问

sudo yum install -y curl policycoreutils-python openssh-server
sudo systemctl enable sshd
sudo systemctl start sshd
--以下命令如果防火墙是关闭状态的可以不用执行
sudo firewall-cmd --permanent --add-service=http
sudo systemctl reload firewalld

步骤二:安装gitlab软件包

curl -sS
http://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh | sudo bash
sudo yum install gitlab-ce

安装完成后出现以下信息代表安装成功

构建GitLab代码私有仓库

步骤三:初始化gitlab配置 默认使用80端口

sudo gitlab-ctl reconfigure

其他命令

#启动gitlab服务
gitlab-ctl start
#停止gitlab服务
gitlab-ctl stop

步骤四:

首次访问时,回重定向到重置密码页面,设置初始化登录密码。默认用户名为root。当重置成功,跳转到登录页面,输入用户名/密码登录即可。

构建GitLab代码私有仓库

此时私有仓库就安装成功了,其他操作步骤都是一模一样的,就不多记录了。

VPS购买请点击我

文章版权声明:除非注明,否则均为主机测评原创文章,转载或复制请以超链接形式并注明出处。

目录[+]