当前位置:   article > 正文

树莓派3B+ Git服务(GitLab)_pi3b+ gitlab

pi3b+ gitlab

树莓派3B+ Git服务(GitLab)


对于git,相信对于一个程序员并不陌生,因为正如我们经常逛的GitHub一样,也是使用了Git服务器,但是对于GitHub在国外,国内访问并不理想,而且你如果有一些私人项目,那么搭建一个Git服务器就必不可少了。


1.下载安装GitLab

GitLab官网:https://www.gitlab.com

下载链接:https://packages.gitlab.com/gitlab/raspberry-pi2/packages/raspbian/jessie/gitlab-ce_10.2.0-rc2.ce.0_armhf.deb
文件大小:378 MB,故请自行下载好再拷贝到树莓派!
备用下载:

// 安装和配置必需的依赖项
sudo apt-get install -y curl openssh-server ca-certificates apt-transport-https
curl https://packages.gitlab.com/gpg.key | sudo apt-key add -

// 安装postfix发送通知邮件。
sudo apt-get install -y postfix

// 在安装配置的屏幕可能会出现postfix。选择“Internet站点”并按Enter键。使用服务器的外部DNS“邮件名称”并按Enter键。如果出现额外的屏幕,继续按回车键接受默认值。

// 添加gitlab下载源。
sudo curl -sS https://packages.gitlab.com/install/repositories/gitlab/raspberry-pi2/script.deb.sh | sudo bash

// 配置 EXTERNAL_URL` http://gitlab.example.com `的URL,并安装
// sudo EXTERNAL_URL="http://192.168.1.120" apt-get install gitlab-ce
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14

注意:这里直接下载安装会比较慢,所以就采用下载好安装包,再安装的形式。
请自行下载好,再拷贝到树莓派。

// 安装下载好的gitlab
sudo dpkg -i gitlab-ce_10.2.0-rc2.ce.0_armhf.deb

// 配置 EXTERNAL_URL` http://gitlab.example.com `的URL
sudo vim /etc/gitlab/gitlab.rb
// 修改如下内容:
external_url 'http://192.168.1.120'

// 配置生效
sudo gitlab-ctl reconfigure

// 启动
sudo gitlab-ctl start
// 浏览到主机名和登录,设置密码(用户名root)

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16

有关安装和配置的详细说明,请参见文档

其它命令:
#使配置生效。
sudo gitlab-ctl reconfigure

#清除缓存页面:
sudo gitlab-rake cache:clear RAILS_ENV=production

#GitLab各组件启动:
sudo gitlab-ctl start

#GitLab各组件停止:
sudo gitlab-ctl stop

#GitLab各组件重启:
sudo gitlab-ctl restart

#禁用GitLab开机启动:
sudo systemctl disable gitlab-runsvdir

#启用GitLab开机自启:
sudo systemctl enable gitlab-runsvdir
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20

后记:对于树莓派来说,跑GitLab还是比较费力的。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/682293
推荐阅读
相关标签
  

闽ICP备14008679号