美文网首页
gitlab使用教程

gitlab使用教程

作者: 运维之美 | 来源:发表于2021-04-18 14:54 被阅读0次

一、搭建
本文采用docker搭建gitlab仓库
docker run -d -p 8443:443 -p 7090:80 --name gitlab --privileged=true -v /home/gitlab/etc:/etc/gitlab -v /home/gitlab/log:/var/log/gitlab -v /home/gitlab/data:/var/opt/gitlab gitlab/gitlab-ce:latest

启动后使用ip:7090访问
二、基本配置
#外部访问url(经过编译后,自动将这个配置编译到nginx配置,nginx就无需配置了)
external_url 'http://gitlab.test.domain.com:8888'
#默认值就是8080。如果端口被占用,可将8080修改为其它(例如:9090)
unicorn['port'] = 8080

三、常用命令
gitlab-ctl start # 启动所有 gitlab 组件;
gitlab-ctl stop # 停止所有 gitlab 组件;
gitlab-ctl restart # 重启所有 gitlab 组件;
gitlab-ctl status # 查看服务状态;
vim /etc/gitlab/gitlab.rb # 修改gitlab配置文件;
gitlab-ctl reconfigure # 重新编译gitlab的配置;
gitlab-rake gitlab:check SANITIZE=true --trace # 检查gitlab;
gitlab-ctl tail # 查看日志;
gitlab-ctl tail nginx/gitlab_access.log

相关文章

  • Gitlab-Runner注册

    Gitlab-Runner使用教程 GitLab-Runner是什么? GitLab-Runner是Gitlab提...

  • GitLab使用

    一、参考资料及官方教程 GitLab 服务器下客户端TortoiseGit配置和使用教程 - 推酷 GitLab使...

  • GitLab使用教程

    原文链接https://blog.csdn.net/Adelly/article/details/79099772

  • gitlab使用教程

    一、搭建本文采用docker搭建gitlab仓库docker run -d -p 8443:443 -p 70...

  • gitlab使用——配置项目操作

    GitLab使用教程 一、基本操作 1、登录从浏览器地址栏输入https://gitlab.com/[https:...

  • gitlab安装使用教程

    如果不是要自己配置web服务器和数据库的,不建议使用源码搭建,可能会有一些配置文件需要自己下载 清华镜像站 g...

  • GItLab的使用教程

    1.配置本机配置ssh参考文档 2.eclipse自带插件配置ssh参考文档

  • git技术,GitHub、GitLab

    git学习 Git教程(小白快速入门版) Git教程(简化版) git详细学习 Gitlab的管理使用手册git初...

  • centos6.x搭建gitlab

    可以参考gitlab中文社区 的教程 centos7安装gitlab:https://www.gitlab.cc/...

  • 安装gitlab

    安装教程参考gitlab官网(https://about.gitlab.com/downloads/#centos...

网友评论

      本文标题:gitlab使用教程

      本文链接:https://www.haomeiwen.com/subject/loqvlltx.html