gitlab構築


gitlab公式サイトhttps://about.gitlab.com/gitlab-com/公式インストールドキュメントhttps://about.gitlab.com/installation/?version=ce#centos-7(ce/ee)サーバのメモリが2 g以上海外で遅いことを要求しているので、国内ソースを使用します.
vim/etc/yum.repos.d/gitlab.repo//以下の内容を加える[gitlab-ce]name=Gitlab CE Repositorybaseurl=https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el$releasever/gpgcheck=0enabled=1
yum install -y gitlab-cegitlab-ctl reconfigure
Netstat-lnpt//リスニングポートgitlab-ctl stop/restart/start/statusブラウザを表示gitlabにアクセスし、ipを入力すると502にアクセスし、ポート競合があるかどうかに注意できます.gitlabを起動する前に、以前に構築したサービスデフォルト管理者rootをすべて閉じたほうがいいです.パスワードがありません.パスワードgitlabの一般的なコマンドを定義できます.https://www.cnyunwei.cc/archives/1204gitlabバックアップgitlab-rake gitlab:backup:createバックアップディレクトリで/var/opt/gitlab/backupsgitlabリカバリ先停サービスgitlab-ctl stop unicorn;gitlab-ctl stop sidekiqgitlab-rake gitlab:backup:restore BACKUP=xxx(ここではバックアップファイルの接頭辞)例えばgitlab-rake gitlab:backup:restore BACKUP=1511704184_2017_11_26_10.2.1
再起動サービスgitlab-ctl start
rpmインストール:(centos 6.5)インストール依存:yum install curl openssh-server openssh-clients postfix cronierpmアドレス:https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el6/gitlab-ce-8.0.5-ce.0.el6.x86_64.rpmダウンロード:wgethttps://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el6/gitlab-ce-8.0.5-ce.0.el6.x86_64.rpmインストール:rpm-ivh gitlab-ce-8.0.5-ce.0.el6.x86_64.rpmgitlab-ctl reconfigure起動:gitlab-ctl start
漢化:その他のバージョンは参考できます:http://blog.csdn.net/wh211212/article/details/72627803#8バージョンは漢化パッケージをダウンロードして漢化[root@git hanhua]# git clonehttps://gitlab.com/larryli/gitlab.gitGitlab-cn&&cd Gitlab-cn#バックアップ/opt/gitlab/embedded/serviceディレクトリ下のgitlab-railsディレクトリ、このディレクトリ下の内容は主にwebアプリケーション部分#バックアップ[root@gitGitlab-cn]#cp-rf/opt/gitlab/embedded/service/gitlab-rails{,.ori}#gitlabというサービスをオフにする[root@gitGitlab-cn]#gitlab-ctl stop#漢化開始[root@git gitlab_pack]#\cp -rf ../Gitlab-cn/*/opt/gitlab/embedded/service/gitlab-rails/テストが漢化に成功したかどうか[root@git~]#gitlab-ctl startok:run:gitlab-workhorse:(pid 1407)263 sok:run:logrtate:(pid 1403)263 sok:run:nginx:(pid 1404)263 sok:run:postgresql:(pid 1405)263 sok:run:redis:(pid 1402)263 sok:run:sidekiq:(pid 1400)263 sok:run:unicorn:(pid 1401)263 s登録http://192.168.201.131/users/sign_in
GitLabプロジェクト作成後のアドレスをLocalhostから実際のIPに変更する方法は端末に入って以下のファイルを修正すればよい.vim/opt/gitlab/embedded/service/gitlab-rails/config/gitlab.yml
GitLab settings
gitlab:
Web server settings (note: host is the FQDN, do not include http://)
host: localhost         >>        IP  
port: 80
https: false

# Uncommment this line below if your ssh host is different from HTTP/HTTPS one
# (you'd obviously need to replace ssh.host_example.com with your own host).
# Otherwise, ssh host will be set to the `host:` value above

GitLab gitlab-ctl restartの再起動
git cleanパラメータ-n削除するファイルとディレクトリ-f削除ファイル、-df削除ファイルとディレクトリを表示