“我报名参加金石计划1期应战——分割10万奖池,这是我的第6篇文章,点击查看活动详情”

以下内容为本人的著作,如需求转载,请声明原文链接 微信公众号「englyf」/post/713550…


最近到了新团队,只要几部新电脑,然后啥也没有了。老江说需求一个办理工程代码的 git 版别服务器,还说他以前用过 gitlab,所以我就自告奋勇接下了锅,在本地主机里建立上线一个 Gitlab 服务器。

运用这个 git 版别服务器不仅支持用 git 东西同步代码,还能够像翻开一个网站相同运用库房办理的其它功用,十分方便。入口衔接地址需求自己装备,后边有介绍。

Gitlab 遵守 MIT 协议,所以能够放心大胆运用。

方针:
为了快速上线一个立刻用到的版别服务器,这儿不计划对 gitlab 的运用做详细说明,仅针对装置装备和上线做初步的介绍。

后期计划:
可能有些运用场景也需求用到一些特殊的服务,比方邮箱、固定域名拜访地址、外网拜访等,所今后期也会有这方面的介绍,敬请关注。

基础环境:
Ubuntu 18.04.1 amd64
良好的网络

1) 预备一下装置环境


以下会运用 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

为了下面的操作,需求先装置一个东西 curl

sudo 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.

2) 在线装置 gitlab


开端装置

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 服务 一节。

苦啊,那就手动装置吧,持续看。。。

3) 手动装置 gitlab


用浏览器去官方网站把装置包 down下来

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 reconfigure
For a comprehensive list of configuration options please see the Omnibus GitLab readme
https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/README.md
Help 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

4) 发动 gitlab 服务


上边装置成功的提示信息里,提到由于装置进程没有检测到有用的主机名,需求装备登录地址,修改文件 /etc/gitlab/gitlab.rb。用文档图形修改东西 gedit 翻开这个文件

sudo gedit /etc/gitlab/gitlab.rb

在上面翻开的文件中,找到变量 external_url,把主机的 IP 地址填进去并保存。主机的 IP 能够用指令 ifconfig 找到。一般还会在 IP 后边添加个端口号避免和默许的端口冲突,我这儿选了 8080

external_url 'http://IP:8080/'

填在 external_url 后边的内容便是 gitlab 的登录地址了。找到的这个 IP 一般都是网内动态地址,所以上面的这个登录地址只在网内有用。假如有需求在网外拜访,考虑到安全性等因素,需求 VPN 支持,这儿不展开。别的,毕竟是动态地址,假如需求运用固定的域名地址拜访,需求 DNS 服务器支持,仍是不展开了。

最后,载入装备并开端运转 Gitlab 服务

sudo gitlab-ctl reconfigure

重新发动所有 gitlab 相关服务会花点时刻。
别的,重启服务器主机后,默许情况下,不需求手动重启 gitlab 服务,gitlab 会主动发动。假如你主动关闭了 gitlab 服务,那么翻开的指令是

sudo gitlab-ctl start

5) 修改 gitlab 办理员暗码


gitlab 装置结束时,会生成一个文件 /etc/gitlab/initial_root_password 保存办理员账户 root 的初始暗码

~$ 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 账户的暗码另存或者重设一个好记点的。

修改办理员暗码有几种方法,我这儿用 gitlab-rails 指令重新设置办理员暗码,设置结束之后不需求重启 gitlab 服务。先进入控制台

sudo gitlab-rails console

找到办理员账户,存入自定义变量 user

irb(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

好了,去试一下用浏览器翻开网址 http://IP:8080/ 吧,祝你好运!