自己搭建 git 服务器:linux 自己 Gitlab 服务
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 的内核,但是无法通过 脚本安装:
发现脚本内容:
肯定会报:!!! Unsupported OS
手动安装 gitlab
选择系统对应的安装包 使用下面的命令手动安装。 比如:清华大学开源软件镜像站
https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7/
手动下载安装
下载完成后
启动 git 服务:
第一次访问 GitLab,系统会重定向 url 到重置密码的页面,需要输入初始化管理员账号的密码。 设置完成后,系统会重定向到登录界面,就可以使用刚才输入的密码登录系统了。
系统默认的管理员账号为 root, 登录系统后,可以修改管理员账号为自己喜欢的账号。
yum 安装
配置 yum 源
添加下面内容:
更新本地 yum 缓存
安装 GitLab 社区版
这么其他依赖: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 和端口,如果有域名可以使用域名,前提域名要解析到该服务器
查找 external_url,改为你自己 ip 地址
注意:修改完成之后要在防火墙放行你的端口号
具体参看:Linux 如何打开端口和设置防火墙:firewall-cmd 与 iptables 配置 https://www.zhoulujun.cn/html/OS/Linux/LinuxDevops/7891.html
如果是腾讯云,还要去修改安全组,增加放行端口。
重启 githlab
参考文章:
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
版权声明: 本文为 InfoQ 作者【zhoulujun】的原创文章。
原文链接:【http://xie.infoq.cn/article/2703d930af96533ad242ffc23】。文章转载请联系作者。
评论