66.gitlab配置

发表于 linux 分类,标签:

1.下载

官方包:https://packages.gitlab.com/gitlab/gitlab-ce

清华包:https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7/

2.rpm安装:

rpm -ivh gitlab-ce-13.6.1-ce.0.el7.x86_64.rpm
yum install -y gitlab-ce-13.6.1-ce.0.el7.x86_64.rpm

配置yam源方式安装:

在 /etc/yum.repos.d/下新建gitlab-ce.repo,写入如下内容:

[gitlab-ce]
name=gitlab-ce
baseurl= 
Repo_gpgcheck=0
Enabled=1
Gpgkey=https://packages.gitlab.com/gpg.key

然后创建cache,再直接安装gitlab-ce

yum makecache  # 这一步会创建大量的数据

#直接安装最新版
yum install -y gitlab-ce 

#如果要安装指定的版本,在后面填上版本号即可
yum install -y  gitlab-ce-13.6.1

#如果安装时出现gpgkey验证错误,只需在安装时明确指明不进行gpgkey验证
yum install gitlab-ce -y --nogpgcheck

3.配置

配置文件位置:/etc/gitlab/gitlab.rb

vim /etc/gitlab/gitlab.rb
grep "^[a-Z]" /etc/gitlab/gitlab.rb
external_url 'http://10.0.0.51'  # 这里一定要加上http://

# 配置邮件服务
gitlab_rails['smtp_enable'] = true
gitlab_rails['smtp_address'] = "smtp.qq.com"
gitlab_rails['smtp_port'] = 25
gitlab_rails['smtp_user_name'] = "hgzerowzh@qq.com"  # 自己的qq邮箱账号
gitlab_rails['smtp_password'] = "xxx"  # 开通smtp时返回的授权码
gitlab_rails['smtp_domain'] = "qq.com"
gitlab_rails['smtp_authentication'] = "login"
gitlab_rails['smtp_enable_starttls_auto'] = true
gitlab_rails['smtp_tls'] = false
gitlab_rails['gitlab_email_from'] = "hgzerowzh@qq.com"  # 指定发送邮件的邮箱地址
user["git_user_email"] = "shit@qq.com"   # 指定接收邮件的邮箱地址

修改好配置文件后,要使用gitlab-ctl reconfigure命令重载一下配置文件,否则不生效

gitlab-ctl reconfigure # 重载配置文件

4.Gitlab常用命令

gitlab-ctl start         # 启动所有 gitlab 组件
gitlab-ctl stop          # 停止所有 gitlab 组件
gitlab-ctl restart       # 重启所有 gitlab 组件
gitlab-ctl status        # 查看服务状态

gitlab-ctl reconfigure   # 启动服务
gitlab-ctl show-config   # 验证配置文件
gitlab-ctl tail          # 查看日志

gitlab-rake gitlab:check SANITIZE=true --trace    # 检查gitlab

vim /etc/gitlab/gitlab.rb # 修改默认的配置文件

5.账户密码

默认账户:root

默认密码:/etc/gitlab/initial_root_password,登录后修改

6.卸载

通过rpm -q <关键字>可以查询到rpm包的名字

调用rpm -e <包的名字>删除特定rpm包

如果遇到依赖,使用rpm -e --nodeps <包的名字>不检查依赖,直接删除rpm包

0 篇评论

发表我的评论