gitlab服务器社区版安装与使用
官王文档: 安装方法 | 极狐GitLab
1. 下载
下载地址为:https://packages.gitlab.com/gitlab/gitlab-ce
下载需要版本:gitlab-ce-10.8.4-ce.0.el7.x86_64.rpm
Linux系统:CentOS7
2. 配置必要的依赖关系
1). 防火墙打开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
2). 安装Postfix来发送通知邮件
如果您想使用另一个解决方案发送电子邮件,请跳过这一步,并在安装GitLab之后配置一个外部SMTP服务器。
sudo yum install postfix
sudo systemctl enable postfix
sudo systemctl start postfix
3). 其他linux发行版配置参考gitlab官网:https://about.gitlab.com/installation/
3. 安装
[liuyh@bogon ~]$ sudo rpm -i gitlab-ce-10.8.4-ce.0.el7.x86_64.rpm
4. 配置域名访问
为使用户可以正确的获取到GitLab上显示的当前仓库的clone地址,GitLab需要你设置好哪个url才是用户可以访问到GitLab, 比如http://192.168.153.131:28080。你需要编辑下面这个文件/etc/gitlab/gitlab.rb
external_url "http://192.168.153.131:28080"
运行 sudo gitlab-ctl reconfigure 使修改生效。
gitlab其他配置参考gitlab中文文档:https://docs.gitlab.com.cn/omnibus/
5. gitlab的使用
1). 登录
登录地址即为external_url配置的地址,默认用户名为root,首次登录为进入重置密码页
重置密码后重新登录,用户名为root
2). 新建分组
3). 新建项目
4). 新建用户
新建用户后重置密码链接会发到用户注册邮箱
管理员通过编辑页修改用户密码,修改完成后用户首次登陆会进入密码修改页
5). 工程的权限分给用户
6). 组的权限分给用户
6. gitlab常用命令
#获取gitlab服务状态
sudo gitlab-ctl status
#启动gitlab所以组件服务
sudo gitlab-ctl start
#停止gitlab所以组件服务
sudo gitlab-ctl stop
#重启gitlab所以组件服务
sudo gitlab-ctl restart
#重启gitlab单个组件服务
sudo gitlab-ctl restart sidekiq
#重新应用gitlab配置
sudo gitlab-ctl reconfigure