Yum一键安装GitLab
·
Yum一键安装GitLab(CentOS7.x)
1.实验环境
[root@gitlab ~]# cat /etc/redhat-release
CentOS Linux release 7.2.1511 (Core)
官网安装指南:下载安装_极狐GitLab - 极狐GitLab 官方网站
2.添加gitlab的yum源仓库
[root@gitlab ~]# curl -s https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh | sudo bash
3.安装gitlab
[root@gitlab ~]# yum -y install gitlab-ce
PS: gitlab-ce 是社区版,免费的;gitlab-ee 是企业版
4.配置gitlab,设置配置文件/etc/gitlab/gitlab.rb 中的 external_url
如果更改默认端口80为8001(注意不要修改为8080否则会和默认的unicorn['port'] = 8080冲突),需要修改配置文件(1)和(2):
(1)gitlab配置文件 /etc/gitlab/gitlab.rb
external_url 'http://192.168.33.66' -----> external_url 'http://192.168.33.66:8001',如下图所示:
(2)nginx配置文件 /var/opt/gitlab/nginx/conf/gitlab-http.conf
5.重载配置生效,然后重启服务
[root@gitlab ~]# gitlab-ctl reconfigure
[root@gitlab ~]# gitlab-ctl restart
6.访问主页
用户名root,首次登陆需设定密码,而且密码至少8位
更多推荐
已为社区贡献2条内容
所有评论(0)