本教程主要讲解了gitlab在项目的环境搭建和基本的使用,可以帮助大家在企业中能够自主搭建GitLab服务,并且可以GitLab中的组、权限、项目自主操作
- GitLab简介
- GitLab环境搭建
- GitLab基本使用(组、权限、用户、项目)
GitLab是整个DevOps生命周期的第一个应用程序。其使用与GitHub类似,并且提供了许多DevOps相关的功能。GitLab提供无与伦比的可见性,更高的效率和全面的治理。这使得软件生命周期加快了200%,从根本上提高了业务速度。
官方网站:https://about.gitlab.com/
3 GitLab安装此处以centos7为例。
1)安装并配置依赖项,同时打开HTTP访问和SSH访问
sudo yum install -y curl policycoreutils-python openssh-serversudo systemctl enable sshdsudo systemctl start sshdsudo firewall-cmd --permanent --add-service=httpsudo systemctl reload firewalld
2)安装GitLab软件包
curl -sS https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh | sudo bashsudo yum install gitlab-ce
3)初始化GitLab配置
sudo gitlab-ctl reconfigure
其他命令
# 启动 gitlab 服务gitlab-ctl start# 停止 gitlab 服务gitlab-ctl stop
默认安装位置
4)访问登录
首次访问时,会重定向到重置密码页面,设置初始化登录密码。默认用户名为root。当重置成功,跳转到登录页面,输入用户名/密码登录即可