时间:2023-07-19 23:36:02 | 来源:网站运营
时间:2023-07-19 23:36:02 来源:网站运营
在局域网搭建一个带 web 操作页面的 git 版本服务器 - Gitlab:以下内容为本人的著作,如需要转载,请声明原文链接 微信公众号「ENG八戒」https://mp.weixin.qq.com/s/Br0ETd_aNffEZoTAba03Bw目标:
为了快速上线一个马上用到的版本服务器,这里不打算对 gitlab 的使用做详细说明,仅针对安装配置和上线做初步的介绍。
后期计划:
可能有些使用场景也需要用到一些特殊的服务,比如邮箱、固定域名访问地址、外网访问等,所以后期也会有这方面的介绍,敬请关注。
基础环境:
Ubuntu 18.04.1 amd64
良好的网络
apt-get
来安装软件,由于肉身在墙内(相信大部分读者也一样吧?),所以切换安装源到墙内对于安装过程会有帮助,起码时间上会快一丢丢。为了以后如果有需要还原默认的安装源配置,这里特地备份一下 apt-get
的安装源配置文件sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak
然后打开它sudo gedit /etc/apt/sources.list
我觉得阿里云的资源访问速度比较快,所以这里准备把安装源切到阿里云,这里有个 Ubuntu 的资源贴出来给大家耍耍,用浏览器打开下边的地址https://developer.aliyun.com/mirror/ubuntu?spm=a2c6h.13651102.0.0.3e221b114ndGlW
这里边列出了好几个配置参考,对应于各个 Ubuntu LTS 版本(比如16.04、18.04、20.04等),太贴心了。以示敬意,不多说,直接拷贝对应的配置内容然后粘贴到上边打开的 sources.list
文档中并且保存。sudo apt-get update
为了下面的操作,需要先安装一个工具 curlsudo apt-get install curl
安装 gitlab 时还有很多的依赖这里没有展开来讲,不过幸好官方其实提供了一个现成脚本用来配置仓库,用下面的指令就可以执行curl -s https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.deb.sh | sudo bash
上面执行过程有可能会失败,提示Installing /etc/apt/sources.list.d/gitlab_gitlab-ce.list...curl: (7) Failed to connect to packages.gitlab.com port 443: Connection refused
这是连接不稳定导致的,多执行几次指令或许就顺利通过了。下边是我的执行结果,表示仓库已经设置成功,万事俱备就等着一键安装了Detected operating system as Ubuntu/bionic.Checking for curl...Detected curl...Checking for gpg...Detected gpg...Running apt-get update... done.Installing apt-transport-https... done.Installing /etc/apt/sources.list.d/gitlab_gitlab-ce.list...done.Importing packagecloud gpg key... gpg: WARNING: unsafe ownership on homedir '/home/if/.gnupg'done.Running apt-get update... done.The repository is setup! You can now install packages.
sudo apt-get install gitlab-ce
好遗憾,又提示 connect 失败了Could not connect to packages.gitlab.com:443...E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?
在上边的安装失败提示信息最后还建议在安装命令参数里添加个选项 --fix-missing
,然后重试sudo apt-get install gitlab-ce --fix-missing
不幸的是,我这边还是安装失败了,如果你的网络足够好或许就成功了呢,要看安装成功的信息可以翻到 手动安装
末尾,安装成功可以直接跳到 启动 gitlab 服务
一节。https://packages.gitlab.com/gitlab/gitlab-ce
我这里下载的是当前最新的包gitlab-ce_14.10.2-ce.0_amd64.deb
找个目录存一下再到目录里执行sudo dpkg -i gitlab-ce_14.10.2-ce.0_amd64.deb
这个安装包大小差不多 1G,稍等了一会,终于安装完成!欣赏一下壮举Selecting previously unselected package gitlab-ce.(Reading database ... 130072 files and directories currently installed.)Preparing to unpack gitlab-ce_14.10.2-ce.0_amd64.deb ...Unpacking gitlab-ce (14.10.2-ce.0) ...Setting up gitlab-ce (14.10.2-ce.0) ...It looks like GitLab has not been configured yet; skipping the upgrade script. *. *. *** *** ***** ***** .****** ******* ******** ******** ,,,,,,,,,***********,,,,,,,,, ,,,,,,,,,,,*********,,,,,,,,,,, .,,,,,,,,,,,*******,,,,,,,,,,,, ,,,,,,,,,*****,,,,,,,,,. ,,,,,,,****,,,,,, .,,,***,,,, ,*,. _______ __ __ __ / ____(_) /_/ / ____ _/ /_ / / __/ / __/ / / __ `/ __ / / /_/ / / /_/ /___/ /_/ / /_/ / /____/_//__/_____//__,_/_.___/ Thank you for installing GitLab!GitLab was unable to detect a valid hostname for your instance.Please configure a URL for your GitLab instance by setting `external_url`configuration in /etc/gitlab/gitlab.rb file.Then, you can start your GitLab instance by running the following command: sudo gitlab-ctl reconfigureFor a comprehensive list of configuration options please see the Omnibus GitLab readmehttps://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/README.mdHelp us improve the installation experience, let us know how we did with a 1 minute survey:https://gitlab.fra1.qualtrics.com/jfe/form/SV_6kVqZANThUQ1bZb?installation=omnibus&release=14-10
/etc/gitlab/gitlab.rb
。用文档图形编辑工具 gedit
打开这个文件sudo gedit /etc/gitlab/gitlab.rb
在上面打开的文件中,找到变量 external_url
,把主机的 IP 地址填进去并保存。主机的 IP 可以用指令 ifconfig
找到。一般还会在 IP 后边添加个端口号防止和默认的端口冲突,我这里选了 8080external_url 'http://IP:8080/'
填在 external_url
后边的内容就是 gitlab 的登录地址了。找到的这个 IP 一般都是网内动态地址,所以上面的这个登录地址只在网内有效。如果有需求在网外访问,考虑到安全性等因素,需要 VPN 支持,这里不展开。另外,毕竟是动态地址,如果需要使用固定的域名地址访问,需要 DNS 服务器支持,还是不展开了。sudo gitlab-ctl reconfigure
重新启动所有 gitlab 相关服务会花点时间。sudo gitlab-ctl start
~$ sudo cat initial_root_password# WARNING: This value is valid only in the following conditions# 1. If provided manually (either via `GITLAB_ROOT_PASSWORD` environment variable or via `gitlab_rails['initial_root_password']` setting in `gitlab.rb`, it was provided before database was seeded for the first time (usually, the first reconfigure run).# 2. Password hasn't been changed manually, either via UI or via command line.## If the password shown here doesn't work, you must reset the admin password following https://docs.gitlab.com/ee/security/reset_user_password.html#reset-your-root-password.Password: 93fm3-ae-f3jijq2oqh3iuhUFUEIBEFAFE434J5-PP04K30=# NOTE: This file will be automatically deleted in the first reconfigure run after 24 hours.
从文件内容来看,这个密码会在24小时后被自动删除,所以需要把这 root 账户的密码另存或者重设一个好记点的。sudo gitlab-rails console
找到管理员账户,存入自定义变量 userirb(main):001:0> user = User.find_by_username 'root'=> #<User id:1 @root>
设置密码,太简单的密码在后边保存的时候会导致操作失败irb(main):002:0> user.password = 'xxx'=> "xxx"
设置确认密码irb(main):003:0> user.password_confirmation = 'xxx'=> "xxx"
保存irb(main):004:0> user.save!=> true
退出控制台irb(main):005:0> exit
关键词:版本,服务,操作