Centos7安装gitlab

Centos7安装gitlab

由于Centos6/7已经停止更新了,故gitlab官方不提供相应的安装指南

GitLab安装

安装必要的依赖,建议Linux机器的最低配置为4核8G,越大越好,机器的流畅性会越好。

python 复制代码
 yum install -y curl policycoreutils-python openssh-server postfix

关闭selinux和防火墙

python 复制代码
systemctl stop firewalld
setenforce 0
sed -i 's/^SELINUX=enforcing/SELINUX=disabled/' /etc/selinux/config

安装方式1:外网下载安装脚本并执行安装

python 复制代码
sudo yum install -y curl policycoreutils-python openssh-server postfix

安装方式2:下载rpm包安装

python 复制代码
wget https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7/gitlab-ce-13.8.4-ce.0.el7.x86_64.rpm
rpm -i gitlab-ce-13.8.4-ce.0.el7.x86_64.rpm

亲测第二种方式快一些

安装成果结果

python 复制代码
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
  Installing : gitlab-ce-17.7.7-ce.0.el7.x86_64                                                                                                                                                                                                                                                                                              1/1 
It looks like GitLab has not been configured yet; skipping the upgrade script.

       *.                  *.
      ***                 ***
     *****               *****
    .******             *******
    ********            ********
   ,,,,,,,,,***********,,,,,,,,,
  ,,,,,,,,,,,*********,,,,,,,,,,,
  .,,,,,,,,,,,*******,,,,,,,,,,,,
      ,,,,,,,,,*****,,,,,,,,,.
         ,,,,,,,****,,,,,,
            .,,,***,,,,
                ,*,.
  


     _______ __  __          __
    / ____(_) /_/ /   ____ _/ /_
   / / __/ / __/ /   / __ `/ __ \
  / /_/ / / /_/ /___/ /_/ / /_/ /
  \____/_/\__/_____/\__,_/_.___/
  

Thank you for installing GitLab!
GitLab was unable to detect a valid hostname for your instance.
Please configure a URL for your GitLab instance by setting `external_url`
configuration in /etc/gitlab/gitlab.rb file.
Then, you can start your GitLab instance by running the following command:
  sudo gitlab-ctl reconfigure

For a comprehensive list of configuration options please see the Omnibus GitLab readme
https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/README.md

Help us improve the installation experience, let us know how we did with a 1 minute survey:
https://gitlab.fra1.qualtrics.com/jfe/form/SV_6kVqZANThUQ1bZb?installation=omnibus&release=17-7

  Verifying  : gitlab-ce-17.7.7-ce.0.el7.x86_64                                                                                                                                                                                                                                                                                              1/1 

Installed:
  gitlab-ce.x86_64 0:17.7.7-ce.0.el7                                                                                                                                                                                                                                                                                                             

Complete!

安装过程需要安装大量的软件,等待时间较久

初始化配置

GitLab默认的配置文件路径:/etc/gitlab/

  • /etc/gitlab/gitlab.rb:主配置文件,包含外部URL、仓库目录、备份目录等

  • /etc/gitlab/gitlab-secrets.json:(执行gitlab-ctl reconfigure命令行后生成),包含各类密钥的加密信息

初始化配置-修改域名

python 复制代码
cat /etc/gitlab/gitlab.rb |grep -v "#" |grep -Ev "^$"
external_url 'http://gitlab.example.com'
# 将这里的url修改为机器的IP地址,如果配置了hosts文件可不进行修改,能够正确解析到后端IP地址即可

重新应用配置文件

python 复制代码
gitlab-ctl reconfigure

这里会重新进行编译,和一开始安装同样,需要等待较长时间

登录

浏览器访问 external_url 即可进行首次登录。首次登录需要设置密码,然后就可以正常使用了

相关推荐
五仁火烧24 分钟前
生产环境中配置了接口3000后,不能启动,改成8080后就可以
linux·网络·安全·vue
黄焖鸡能干四碗28 分钟前
智能制造工业大数据应用及探索方案(PPT文件)
大数据·运维·人工智能·制造·需求分析
JiMoKuangXiangQu31 分钟前
Linux build:头文件安装
linux·headers_install
橙露35 分钟前
国产PLC与进口PLC全面对比分析:技术、市场与未来趋势
运维·网络
lbb 小魔仙40 分钟前
【Linux】云原生运维效率提升:Linux 终端工具链(kubectl + tmux + fzf)组合拳教程
linux·运维·云原生
清水白石0081 小时前
解构异步编程的两种哲学:从 asyncio 到 Trio,理解 Nursery 的魔力
运维·服务器·数据库·python
码农小韩1 小时前
基于Linux的C++学习——动态数组容器vector
linux·c语言·开发语言·数据结构·c++·单片机·学习
Joren的学习记录1 小时前
【Linux运维大神系列】Kubernetes详解3(kubeadm部署k8s1.23高可用集群)
linux·运维·kubernetes
代码游侠2 小时前
应用——智能配电箱监控系统
linux·服务器·数据库·笔记·算法·sqlite
眠りたいです2 小时前
Docker核心技术和实现原理第二部分:docker镜像与网络原理
运维·网络·docker·容器