【记录】CentOS 安装 gitlab社区版
GitLab 是一个开源应用程序,自托管的 Git 项目仓库,可通过 Web 界面进行访问公开的或者私人项目
安装
# 基础依赖
yum install curl policycoreutils openssh-server openssh-clients postfix
systemctl start postfix
# 安装gitlab
curl -sS https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh | sudo bash
yum install -y gitlab-ce-10.8.7
配置并启动 gitlab-ce
gitlab-ctl reconfigure
gitlab 管理
# 查看状态
gitlab-ctl status
# 关闭gitlab
gitlab-ctl stop
# 启动gitlab
gitlab-ctl start
# 重启gitlab
gitlab-ctl restart