欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  科技

Gitlab_服务器安装配置

程序员文章站 2022-06-26 08:53:20
1:开放防火墙端口 1. sudo yum install curl openssh-server openssh-clients postfix cronie -y 2. 添加GitLab仓库,并安装到服务器上 3. 启动GitLab 时间可能较长,耐心等待 sudo gitlab-ctl rec ......

1:开放防火墙端口

1.  sudo yum install curl openssh-server openssh-clients postfix cronie -y

  1.  sudo service postfix start
  2.  sudo chkconfig postfix on
  3.  sudo lokkit -s http -s ssh

2. 添加GitLab仓库,并安装到服务器上

  1. curl -sS http://packages.gitlab.cc/install/gitlab-ce/script.rpm.sh | sudo bas   测试开发交流群 317765580
  2. sudo yum install gitlab-ce

3. 启动GitLab  时间可能较长,耐心等待

    sudo gitlab-ctl reconfigur

4.本地访问GitLab

Gitlab_服务器安装配置

5.根据需要,修改ip和默认端口

  vim /etc/gitlab/gitlab.rb

  external_url 'http://localhost:90'

  修改之后记得重启服务    

6.gitlab基本操作命令:

  1.  gitlab-ctl start 启动gitlab
  2.  gitlab-ctl stop 停用gitlab
  3. cat /opt/gitlab/embedded/service/gitlab-rails/VERSION查看git版本  测试开发交流群 317765580

7.强制修改gitlab默认的用户名和密码 

  gitlab-rails console production  耐心等待加载完成

  user = User.where(id: 1).first   root用户默认为1

  user.password = 'secret_pass' user.password_confirmation = 'secret_pass' 重复设置密码

  user.save! 保存

  修改之后记得重启服务

8:docker下安装git镜像

  sudo docker pull gitlab/gitlab-ce:latest 下载gitlab

 

启动git镜像服务

{docker run --detach \  

  --hostname {host} \

  --publish 443:443 --publish 80:80 --publish 23:23 \

  --name gitlab \

  --restart always \

  --volume /srv/gitlab/config:/etc/gitlab \

  --volume /srv/gitlab/logs:/var/log/gitlab \

  --volume /srv/gitlab/data:/var/opt/gitlab \

 gitlab/gitlab-ce:latest}

直接在本地访问gitlab吧~

 git部署之后吗,默认用户名和密码为  root/5iveL!fe

测试开发交流群 317765580