这两天一直在给公司的服务器配置Gitlab(10.5.4)。过程很是痛苦,所以把过程记录一下。
1、安装CentOS7
从官网上下载了最新版CentOS-7-x86_64-DVD-1708.iso。用老毛桃制作了启动优盘。
安装时,选择 基础网络服务器。这个最让我头疼就是设置IP地址了,由于公司IP分段管理,让我好一个折腾。可以参见上文
http://blog.****.net/qwlovedzm/article/details/79562401
经验提示:网络设置比较麻烦,我直接用的图形界面设置的静态IP。这可是肺腑之言。
2、安装Gitlab
第一步 yum安装依赖
sudo yum install curl policycoreutils openssh-server openssh-clients
sudo systemctl enable sshd
sudo systemctl start sshd
sudo yum install postfix
sudo systemctl enable postfix
sudo systemctl start postfix
#安装防火墙
sudo yum install firewalld
sudo systemctl start firewalld
#firewall-cmd --permanent --add-service
#sudo systemctl reload firewalld
sudo firewall-cmd --add-service=http --permanent
sudo firewall-cmd --reload
第二步 下载安装gitlab package
curl -sS https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh | sudo bash
sudo yum install gitlab-ce #安装指定版本 sudo yum install gitlab-ce-10.5.4
如果脚本无法运行, 可以直接下载下来
curl -LJO https://packages.gitlab.com/gitlab/gitlab-ce/packages/el/7/gitlab-ce-0.el7.x86_64.rpm/download
rpm -i gitlab-ce-XXX.rpm
#国内镜像:curl -LJO https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7/gitlab-ce-10.5.4-ce.0.el7.x86_64.rpm
#rpm -i gitlab-ce-10.5.4.rpm
第三步 配置gitlab
sudo gitlab-ctl reconfigure
第四步 启动
sudo gitlab-ctl start
#centos7 防火墙 允许80端口或是其他指定端口
#sudo firewall-cmd --permanent --zone=public --add-port=80/tcp
#我的是815端口,所以要加进去。
sudo firewall-cmd --permanent --zone=public --add-port=815/tcp
sudo firewall-cmd --add-service=http --permanent
sudo firewall-cmd --reload
3、修改Gitlab默认访问端口
由于公司网站的80口被占用了,只能换成815,这个问题折磨了我两天时间。还是看得官网资料解决了。
--1更改端口
vim /etc/gitlab/gitlab.rb
输入内容:
external_url 'http://10.68.166.10:815'
nginx['listen_port'] = 815
nginx['listen_https'] = false
--2 改nigx端口
vim /var/opt/gitlab/nginx/conf/gitlab-http.conf
查找如下内容并修改:
server {
listen *:815;
server_name 10.68.166.10
if ($http_host = "") {
set $http_host_with_default "10.68.166.10:815";
}
}
--------------------------------------------------------------
修改完成后,执行
gitlab-ctl reconfigure
gitlab-ctl restart
打开浏览器,输入"http:/10.68.166.10:815",见到了久违的登录页。
GitLab服务器IP地址修改为域名
---------------------------------------------------------------------------------------------------------
1、在GitLab上新建一个项目test_gitlab,刚开始仓库地址是http://localhost/yulei/test_gitlab.git .
把localhost 换成域名(前提是可以将外网的指定端口映射到内网),修改方式如下:
修改gitlab.yml文件:
[cpp] view plain copy
[root@localhost config]# cd /opt/gitlab/embedded/service/gitlab-rails/config
2、修改gitlab.yml文件
[cpp] view plain copy
[root@localhost config]# vim gitlab.yml
[root@localhost config]# vim gitlab.yml
3、重启GitLab,就可以在项目主页上看到URL变成了域名。
[cpp] view plain copy
gitlab-ctl restart
---------------------
作者:lelele1990
来源:****
原文:https://blog.****.net/qwlovedzm/article/details/79576112
版权声明:本文为博主原创文章,转载请附上博文链接!