centos7 配置gitlab

下载Gitlab的rpm包至本地

可去选择合适的版本https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7/

安装

 yum localinstall  gitlab-ce-12.3.9-ce.0.el7.x86_64.rpm -y
 vim /etc/gitlab/gitlab.rb  
 域名配置:
 -----------------------------------
 	external_url 'http://gitlab.haitang.local'
 -----------------------------------
 其他配置:
 -----------------------------------
	node_exporter['enable'] = false
	redis_exporter['enable'] = false
	alertmanager['enable'] = false
	prometheus['enable'] = false
	prometheus['monitor_kubernetes'] = false
	postgres_exporter['enable'] = false
	pgbouncer_exporter['enable'] = false
	gitlab_exporter['enable'] = false
	prometheus_monitoring['enable'] = false
	grafana['enable'] = false
-----------------------------------

window 设置hosts

ip gitlab.haitang.local

重设密码

第一次登陆修改密码

登陆

用户为root
密码为修改后的密码

最后附带一句 linux安装git 客户端,更简单:yum install git -y

你可能感兴趣的:(gitlab)