gitlab

作者: tanghuibook | 来源:发表于2018-10-05 23:37 被阅读0次

纯净版 CentOS 运存 2G

在root权限下执行

    gitlab的依赖包安装:

                    sudo yum install -y curl policycoreutils-python openssh-server cronie

                    sudo lokkit -s http -s ssh

                    sudo yum install postfix

                    sudo service postfix start

                    sudo chkconfig postfix on

    gitlab的安装包安装:

                    将gitllab的安装包 gitlab-ce-10.3.9-ce.0.el6.x86_64.rpm放到linux上面去。

                    rpm -i gitlab-ce-10.3.9-ce.0.el6.x86_64.rpm        一般是安装到/opt文件夹下

               进行gitlab的重新配置

                        sudo gitlab-ctl reconfigure        

         进行gitlab.yml、gitlab.rb 文件的修改:修改host地址为自定义的域名

                        vim /var/opt/gitlab/gitlab-rails/etc/gitlab.yml 

        gitlab:

  ## Web server settings (note: host is the FQDN, do not include http://)

             host: gitlab.tang.com          修改host的值成自己定义的访问域名

      保存退出后再执行修改命令gitlab.rb文件:

                        vim /etc/gitlab/gitlab.rb

               external_url 'http://gitlab.tang.com'      修改  external_url 的值与yml文件中的host域名一致

      进行重启,让修改后的配置生效

sudo gitlab-ctl reconfigure 

            最后安装后还需要在本地的windows系统配置HOSTS 文件中加入 本机的IP  和 自定义gitlab域名的键值对  让windows上也可以访问。

        C:\Windows\System32\drivers\etc\HOSTS

          192.168.116.139  gitlab.tang.com

          保存后完成

相关文章

网友评论

      本文标题:gitlab

      本文链接:https://www.haomeiwen.com/subject/uyscaftx.html