gitlab的搭建及使用
1、环境准备
服务器准备
CentOS Linux release 7.9.2009 (Core),内存至少4G。
修改主机名和配置ip地址
hostnamectl set-hostname <hostname>
关闭主机的防火墙
# 关闭防火墙
systemctl stop firewalld #临时关闭防火墙
systemctl disable firewalld #启动时禁用防火墙
关闭selinux
# 关闭selinux
setenforce 0 # 临时
sed -i 's/enforcing/disabled/' /etc/selinux/config # 永久
安装 gitlab 需要的组件
yum install -y curl policycoreutils openssh-server openssh-clients postfix policycoreutils-python cronie
设置使用Postfix发生邮件
systemctl enable postfix
systemctl start postfix
2、安装gitlab
gitlab 提供了两种安装方式:源码包编译安装和rpm软件包安装,我这里选择rpm软件包安装的形式。
2.1、rpm软件包安装
2.1.1、yum源安装
使用yum源下载,配置yum源:
vim /etc/yum.repos.d/gitlab.repo
[gitlab-ce]
name=gitlab-ce
baseurl=http://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7
repo_gpgcheck=0
gpgcheck=0
enabled=1
gpgkey=https://packages.gitlab.com/gpg.key
安装gitlab:
#安装
yum install -y gitlab-ce
#卸载
yum remove gitlab-ce
2.1.2、软件包安装
下载安装包 gitlab地址
把软件包上传到服务器
或者直接下载
wget https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7/gitlab-ce-12.0.2-ce.0.el7.x86_64.rpm
安装gitlab
rpm -ivh gitlab-ce-12.0.2-ce.0.el7.x86_64.rpm
2.2、配置gitlab访问地址
安装完成之后,打开配置文件
vim /etc/gitlab/gitlab.rb
将将 external_url = 'http://git.example.com'
修改为自己的 IP 地址
修改标红部分
external_url 'http://10.10.181.200'
2.3、重置gitlab
gitlab-ctl reconfigure
重新配置应用程序,修改 gitlab 服务配置文件后,都需执行这个命令,让各个服务重新加载生效,可能会等4分钟左右。
2.4、登录gitlab
http://10.10.181.200/users/sign_in
yum安装的
默认登录账户:root
初始密码存放位置 /etc/gitlab/initial_root_password
登录成功后再修改密码。
2.5、修改默认端口
gitLab 的相关参数配置都存在 /etc/gitlab/gitlab.rb 文件里。
gitLab 默认使用 80 端口对外提供服务,如安装前服务器有启用80,安装完访问会报错。需更改gitlab的默认端口。
vim /etc/gitlab/gitlab.rb
这时候就可以通更改后的 IP + 端口号码进行访问了。
每次重新配置,都需要执行 gitlab-ctl reconfigure 使之生效。
日志位置:/var/log/gitlab 可以进去查看访问日志以及报错日志等,供访问查看以及异常排查。
3、gitlab使用
3.1、管理gitlab
关闭 gitlab:gitlab-ctl stop
启动 gitlab: gitlab-ctl start
重启 gitlab: gitlab-ctl restart
gitlab 主配置文件:/etc/gitlab/gitlab.rb #可以自定义一些邮件服务等
日志地址:/var/log/gitlab/ #对应各服务
服务地址:/var/opt/gitlab/ #对应各服务的主目录
仓库地址:/var/opt/gitlab/git-data #记录项目仓库等提交信息
重置配置:gitlab-ctl reconfigure #不要乱用
重启服务:gitlab-ctl stop/start/restart #启动命令
3.2、汉化gitlab
gitlab中文社区版的项目,v7-v8.8 是由 Larry Li发起的“GitLab 中文社区版项目”(https://gitlab.com/larryli/gitlab),从 v8.9之后,@xhang 开始继续该汉化项目(https://gitlab.com/xhang/gitlab)。
下载稳定版汉化软件包
我们这里安装的是v12版本的gitlab,下载v12的汉化包(注:版本要对应)
wget https://gitlab.com/xhang/gitlab/-/archive/12-0-stable/gitlab-12-0-stable-zh.tar.gz
解压安装包
tar zxf gitlab-12-0-stable-zh.tar.gz
修改解压缩包名
mv gitlab-12-3-stable-50d93f8d1686950fc58dda4823c4835fd0d8c14b gitlab-12-3-stable-zh
查看版本
cat /opt/gitlab/embedded/service/gitlab-rails/VERSION
cat /root/gitlab-12-0-stable-zh/VERSION
先停止服务
gitlab-ctl stop
开始汉化
/bin/cp -rf gitlab-12-0-stable-zh/* /opt/gitlab/embedded/service/gitlab-rails/
启动gitlab
gitlab-ctl start
再重新登录gitlab。
等1分钟,再去访问web页面。访问太快会显示 502 错误。