码迷,mamicode.com
首页 > 其他好文 > 详细

Centos 7搭建Gitlab服务器

时间:2019-10-12 22:57:48      阅读:105      评论:0      收藏:0      [点我收藏+]

标签:prot   centos   mct   star   rest   输入   没有   span   postfix   

原文:https://blog.csdn.net/duyusean/article/details/80011540

一、 安装并配置必要的依赖关系

在CentOS系统上安装所需的依赖:ssh,防火墙,postfix(用于邮件通知) ,wget,以下这些命令也会打开系统防火墙中的HTTP和SSH端口访问。

1.安装ssh

sudo yum install -y curl policycoreutils-pythonopenssh-server

 

2.将SSH服务设置成开机自启动,安装命令:

sudo systemctl enable sshd  

 

3.启动SSH服务,安装命令:

sudo systemctl start sshd

 

4。安装防火墙(如果已经安装了防火墙并且已经在运行状态,则可直接进行第6步)

yum install firewalld systemd -y

 

5.开启防火墙,安装命令:

service firewalld  start

 

6.添加http服务到firewalld,pemmanent表示永久生效,若不加--permanent系统下次启动后就会失效。

sudo firewall-cmd --permanent --add-service=http

 

7.重启防火墙,安装命令:

sudo systemctl reload firewalld

 

8.接下来,安装Postfix以发送通知邮件,安装命令:

sudo yum install postfix

 

9.将postfix服务设置成开机自启动,安装命令:

sudo systemctl enable postfix

 

10.启动postfix,安装命令:

sudo systemctl start postfix

 

11.wget 用于从外网上下载插件

        若wget未安装则进行安装,安装命令:

yum -y install wget

 

12.安装vim编辑器  安装命令:

yum install vim -y

二、添加GitLab镜像源并安装gitlab服务器

1.添加gitlab镜像

wget https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7/gitlab-ce-10.0.0-ce.0.el7.x86_64.rpm

2.安装gitlab 安装命令:

rpm -i gitlab-ce-10.0.0-ce.0.el7.x86_64.rpm

3.修改gitlab配置文件指定服务器ip和自定义端口:

 

vim  /etc/gitlab/gitlab.rb
# 配置external_url ‘http://服务器ip:端口‘

4.重置并启动GitLab

执行:

gitlab-ctl reconfigure

gitlab-ctl restart

提示  "ok: run:"表示启动成功

5.访问 GitLab页面

如果没有域名,直接输入服务器ip和指定端口进行访问

初始账户: root 密码:5iveL!fe

第一次登录修改密码

 

遇到的错误

1.Job for postfix.service failed because the control process exited with error code. See "systemctl status postfix.service" and "journalctl -xe" for details.

这是因为防火墙或者配置文件导致,无法启动的邮件服务!!

首先关闭防火墙!

修改配置文件

vim /etc/postfix/main.cf

inet_protocols = ipv4
inet_interfaces = all

这样就可以启动服务了

Centos 7搭建Gitlab服务器

标签:prot   centos   mct   star   rest   输入   没有   span   postfix   

原文地址:https://www.cnblogs.com/wtil/p/11664153.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!