其他分享
首页 > 其他分享> > gitlab部署

gitlab部署

作者:互联网

gitlab部署

1.关闭防火墙和selinux

[root@130 ~]# systemctl disable --now firewalld
[root@130 ~]# setenforce 0
[root@130 ~]# sed -i 's/SELINUX=enforcing/SELINUX=disabled/g' /etc/selinux/config 

2.下载软件包

//下载epel-release源
[root@130 ~]# yum -y install epel-release

//安装依赖包
[root@130 ~]# yum -y install git curl openssh-server openssh-clients postfix cronie policycoreutils-python-utils

//下载软件包到/usr/src下 ,然后安装
[root@130 src]# ls gitlab-ce-14.3.2-ce.0.el8.x86_64.rpm 
gitlab-ce-14.3.2-ce.0.el8.x86_64.rpm
[root@130 src]# rpm -ivh gitlab-ce-14.3.2-ce.0.el8.x86_64.rpm 
警告:gitlab-ce-14.3.2-ce.0.el8.x86_64.rpm: 头V4 RSA/SHA256 Signature, 密钥 ID f27eab47: NOKEY
Verifying...                          ################################# [100%]
准备中...                          ################################# [100%]
正在升级/安装...
   1:gitlab-ce-14.3.2-ce.0.el8        ################################# [100%]
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=14-3

//修改配置文件
[root@130 ~]# vim /etc/gitlab/gitlab.rb 
external_url 'http://192.168.237.130'	//域名改成本机IP

//

标签:__,GitLab,14.3,部署,gitlab,130,root
来源: https://blog.csdn.net/tianwailaiwu_/article/details/120720910