写点什么

自己搭建 git 服务器:linux 自己 Gitlab 服务

作者:zhoulujun
  • 2022 年 7 月 12 日
  • 本文字数:1555 字

    阅读完需:约 5 分钟

github 只能保存开源项目,私有项目要收费。

公司的 git 不想上传个人项目,比如我的博客:  https://www.zhoulujun.cn/https://www.zhoulujun.co https://www.zhoulujun.life/

个人代码如果本地只是 commit ,不上传服务器,还是不安全。

所以想在搭建自己的 git 服务器(想在与服务器也非常便宜

服务器快速搭建 gitlab 方法

centos、ununtu、Debian、AlmalLinux 官方镜像

如果是 centos、ununtu、Debian、AlmalLinux 官方镜像,直接参考官方教程安装就好,具体参看官方教程:

安装私有化部署版极狐 GitLab https://about.gitlab.cn/install/#centos-7?version=ce

非官方镜像

比如 tlinx,虽然是 centos 的内核,但是无法通过 脚本安装:

curl -fsSL https://packages.gitlab.cn/repository/raw/scripts/setup.sh | /bin/bash
复制代码

发现脚本内容:


centos安装gitlab 不支持


肯定会报:!!! Unsupported OS


手动安装 gitlab

选择系统对应的安装包 使用下面的命令手动安装。 比如:清华大学开源软件镜像站

https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7/

手动下载安装

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

下载完成后

rpm -i gitlab-ce-XXX.rpm
复制代码

启动 git 服务:

gitlab-ctl reconfigure
复制代码

第一次访问 GitLab,系统会重定向 url 到重置密码的页面,需要输入初始化管理员账号的密码。 设置完成后,系统会重定向到登录界面,就可以使用刚才输入的密码登录系统了。

系统默认的管理员账号为 root, 登录系统后,可以修改管理员账号为自己喜欢的账号。

yum 安装

配置 yum 源

vim /etc/yum.repos.d/gitlab-ce.repo
复制代码

添加下面内容:

[gitlab-ce]name=gitlab-cebaseurl=http://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/e16Repo_gpgcheck=0Enabled=1Gpgkey=https://packages.gitlab.com/gpg.key
复制代码

更新本地 yum 缓存

yum makecache
复制代码

安装 GitLab 社区版

yum intall gitlab-ce        #自动安装最新版yum install gitlab-ce-x.x.x    #安装指定版本
复制代码

这么其他依赖:curl policycoreutils openssh-server openssh-clients postfix 无需多说


GitLab 常用命令

  • gitlab-ctl start    # 启动所有 gitlab 组件;

  • gitlab-ctl stop        # 停止所有 gitlab 组件;

  • gitlab-ctl restart        # 重启所有 gitlab 组件;

  • gitlab-ctl status        # 查看服务状态;

  • gitlab-ctl reconfigure        # 启动服务;

  • vim /etc/gitlab/gitlab.rb        # 修改默认的配置文件;

  • gitlab-rake gitlab:check SANITIZE=true --trace    # 检查 gitlab;

  • gitlab-ctl tail        # 查看日志;


修改 GitLab 配置

不修改配置,项目地址就会是  git@gitlab.example.com:zhou/zhoulujun.co.git,这个域名肯定得修改

主要修改访问 IP 和端口,如果有域名可以使用域名,前提域名要解析到该服务器

vim /etc/gitlab/gitlab.rb
复制代码

查找 external_url,改为你自己 ip 地址



注意:修改完成之后要在防火墙放行你的端口号

firewall-cmd --permanent --add-port=10086/tcp
复制代码

具体参看:Linux 如何打开端口和设置防火墙:firewall-cmd 与 iptables 配置 https://www.zhoulujun.cn/html/OS/Linux/LinuxDevops/7891.html

如果是腾讯云,还要去修改安全组,增加放行端口。

重启 githlab

gitlab-ctl reconfiguregitlab-ctl restart
复制代码


参考文章:

https://GitLab 快速搭建 hcldirgit.github.io/2017/11/04/Git/6.GitLab 快速搭建/

CentOS 搭建 GitLab https://learnku.com/articles/34145

CentOS 7 搭建 GitLab https://www.itze.cn/linux/761.html

在 linux 系统(Redhat,CentOS,Ubuntu)上搭建 gitlab 服务器 https://blog.51cto.com/u_15349841/3708521


转载本站文章《自己搭建git服务器:linux自己Gitlab服务》,请注明出处:https://www.zhoulujun.cn/html/tools/VCS/git/8809.html

发布于: 刚刚阅读数: 4
用户头像

zhoulujun

关注

还未添加个人签名 2021.06.25 加入

还未添加个人简介

评论

发布
暂无评论
自己搭建git服务器:linux自己Gitlab服务_gitlab_zhoulujun_InfoQ写作社区