搭建Gitlab
Posted 编程爱好者的博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了搭建Gitlab相关的知识,希望对你有一定的参考价值。
这个周末好奇想搭建一个私有的Gitlab,以前折腾过一次。现在记录如下。
一、安装Ubuntu 16.04 LTS server amd64 到Virtual Box
二、安装gitlab服务器
按照官网的说明(Download GitLab Community Edition (CE))一步步操作即可。注意:使用中国镜像来下载,页面底部有说明。
Gitlab管理命令
sudo gitlab-ctl restart
sudo gitlab-ctl reconfigure
sudo gitlab-ctl-rails console production 控制台,可以改密码设置admin用户等操作
设置一个用户为admin用户
user = User.find_by(email: ‘[email protected]‘)
user.admin = true
user.save
参考:
b. http://docs.gitlab.com/ce/security/reset_root_password.html
三、设置gitlab page服务(failed)
1. Gitlab Runner:https://gitlab.com/gitlab-org/gitlab-ci-multi-runner
2. Install:Install using official GitLab repositories
参考:
a. Gitlab: https://about.gitlab.com/downloads/#ubuntu1604
b. 国内gitlab:https://mirror.tuna.tsinghua.edu.cn/help/gitlab-ce/
以上是关于搭建Gitlab的主要内容,如果未能解决你的问题,请参考以下文章