版本控制gitlab

导读:本篇文章讲解 版本控制gitlab,希望对大家有帮助,欢迎收藏,转发!站点地址:www.bmabk.com

版本控制gitlab

版本控制是指对软件开发过程中各种程序代码、配置文件及说明文档等文件变更的管理,是软件配置管理的核心思想之一。

版本控制最主要的功能就是追踪文件的变更。它将什么时候、什么人更改了文件的什么内容等信息忠实地了记录下来。每一次文件的改变,文件的版本号都将增加。除了记录版本变更外,版本控制的另一个重要功能是并行开发。软件开发往往是多人协同作业,版本控制可以有效地解决版本的同步以及不同开发者之间的开发通信问题,提高协同开发的效率。并行开发中最常见的不同版本软件的错误(Bug)修正问题也可以通过版本控制中分支与合并的方法有效地解决。

在这里插入图片描述

常用的版本控制工具:

  • gitlab
  • subversion

部署gitlab

下载gitlab的rpm包:gitlab

// 安装epel源
[root@localhost ~]# yum -y install epel-release

// 关闭防火墙和selinux
[root@localhost ~]# systemctl stop firewalld
[root@localhost ~]# systemctl disable firewalld
Removed /etc/systemd/system/multi-user.target.wants/firewalld.service.
Removed /etc/systemd/system/dbus-org.fedoraproject.FirewallD1.service.

[root@localhost ~]# vim /etc/selinux/confg
SELINUX=disabled
[root@localhost ~]# setenforce 0

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

// 设置postfix开机自启
[root@localhost src]# systemctl enable --now postfix
Created symlink /etc/systemd/system/multi-user.target.wants/postfix.service → /usr/lib/systemd/system/postfix.service.

[root@localhost ~]# ss -antl
State  Recv-Q Send-Q Local Address:Port Peer Address:PortProcess
LISTEN 0      128          0.0.0.0:22        0.0.0.0:*          
LISTEN 0      100        127.0.0.1:25        0.0.0.0:*          
LISTEN 0      128             [::]:22           [::]:*          
LISTEN 0      100            [::1]:25           [::]:*

// 切换目录
[root@localhost ~]# cd /usr/src/

// 下载gitlab包
[root@localhost src]# wget https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el8/gitlab-ce-14.3.2-ce.0.el8.x86_64.rpm

[root@localhost src]# rpm -ivh gitlab-ce-14.3.2-ce.0.el8.x86_64.rpm 
warning: gitlab-ce-14.3.2-ce.0.el8.x86_64.rpm: Header V4 RSA/SHA256 Signature, key ID f27eab47: NOKEY
Verifying...                          ################################# [100%]
Preparing...                          ################################# [100%]
Updating / installing...
   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@localhost ~]# vim /etc/gitlab/gitlab.rb 
data-data-retrieval.html
external_url 'http://192.168.91.139'  //替换为自己的ip地址


// 配置gitlab
[root@localhost ~]# gitlab-ctl reconfigure
gitlab Reconfigured!



//查看当前的gitlab版本
[root@localhost ~]# head -1 /opt/gitlab/version-manifest.txt
gitlab-ce 14.3.2

// 重新启动
[root@localhost ~]# gitlab-ctl restart
ok: run: alertmanager: (pid 5185) 0s
ok: run: gitaly: (pid 5197) 1s
ok: run: gitlab-exporter: (pid 5238) 0s
ok: run: gitlab-workhorse: (pid 5240) 1s
ok: run: grafana: (pid 5251) 0s
ok: run: logrotate: (pid 5290) 0s
ok: run: nginx: (pid 5296) 1s
ok: run: node-exporter: (pid 5363) 0s
ok: run: postgres-exporter: (pid 5370) 1s
ok: run: postgresql: (pid 5390) 0s
ok: run: prometheus: (pid 5419) 1s
ok: run: puma: (pid 5531) 0s
ok: run: redis: (pid 5539) 0s
ok: run: redis-exporter: (pid 5545) 1s
ok: run: sidekiq: (pid 5628) 0s

[root@localhost src]# ss -antl
State   Recv-Q  Send-Q   Local Address:Port   Peer Address:Port 
LISTEN  0       1024         127.0.0.1:3000        0.0.0.0:*    
LISTEN  0       100          127.0.0.1:25          0.0.0.0:*    
LISTEN  0       511            0.0.0.0:8060        0.0.0.0:*    
LISTEN  0       1024         127.0.0.1:9121        0.0.0.0:*    
LISTEN  0       1024         127.0.0.1:9090        0.0.0.0:*    
LISTEN  0       1024         127.0.0.1:9187        0.0.0.0:*    
LISTEN  0       1024         127.0.0.1:9093        0.0.0.0:*    
LISTEN  0       1024         127.0.0.1:9100        0.0.0.0:*    
LISTEN  0       1024         127.0.0.1:9229        0.0.0.0:*    
LISTEN  0       128          127.0.0.1:9168        0.0.0.0:*    
LISTEN  0       1024         127.0.0.1:8080        0.0.0.0:*    
LISTEN  0       511            0.0.0.0:80          0.0.0.0:*    
LISTEN  0       128          127.0.0.1:8082        0.0.0.0:*    
LISTEN  0       128          127.0.0.1:9236        0.0.0.0:*    
LISTEN  0       128            0.0.0.0:22          0.0.0.0:*    
LISTEN  0       100              [::1]:25             [::]:*    
LISTEN  0       1024                 *:9094              *:*    
LISTEN  0       128              [::1]:9168           [::]:*    
LISTEN  0       128               [::]:22             [::]:*  

// 查看登录密码
cat /etc/gitlab/initial_root_password

登录页面
在这里插入图片描述

在这里插入图片描述
在这里插入图片描述

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/5623.html

(1)
小半的头像小半

相关推荐

极客之音——专业性很强的中文编程技术网站,欢迎收藏到浏览器,订阅我们!