gerrit server搭建

Posted 斬妖ㄖ誋

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了gerrit server搭建相关的知识,希望对你有一定的参考价值。

Part 1  Gerrit Prerequisites:

  1. 1.Java JDK>1.7
  2. 2.Git
  3. 3.SSH server
  4. 4.DB
part 2 Set local gerrit server:
  1. $ java -jar ./gerrit-2.11war init -d review_site
DefaultSecureStore:
  1. #除以下选项外,其他选默认即可
  2. Database server type [h2]: h2
  3. Authentication method [OPENID/?]:development_become_any_account
  4. Listen on port [29418]:9420
  5. Create adminstrator user [Y/n]?
  6. username [admin]:ext-huaqin-wangpengfei(电脑用户名)
  7. name [Administrator]:wangpengfei
  8. email [admin@example.com]:wangpengfei@huaqin.com
  9. HTTP password [secret]:
open http://10.0.0.9:9420/#/admin/prjects/
part 3 push all projects to gerrit:
  1. $ repo forall -c \'echo $REPO_PROJECT; ssh -p 9420 admin@localhost gerrit create-project --name $REPO_PROJECT\'
attention:REPO_PROJECT 为sever名
               REPO_PATH为本地路径名
                这条语句执行后只是依据本地工程结构构建sever端的工程结构,工程本身为空
  1. $ repo formall -c \'echo $REPO_PROJECT; git push ssh://ramon@localhost:9420/$REPO_PROJECT +refs/heads/*;\'
                这条语句推送所有的branch
  1. $ repo formall -c \'echo $REPO_PROJECT; git push ssh://ramon@localhost:9420/$REPO_PROJECT +refs/tags/*;\'
                这条语句推送所有的tags
attention:推送tags时我们会遇到权限问题
                 在gerrit文档中我们可以查看到我们所有需的权限信息
                  
                   因为所有的工程都是继承至 All-projects 所以我们在All projects的Access下增加如下三个权限完成tag推送工作
                   
  至此,我们的local gerrit server搭建完成!
 
                                                                                                                                                                                                                                                                                       ---By Amzaon Train 
 





以上是关于gerrit server搭建的主要内容,如果未能解决你的问题,请参考以下文章

ubuntu搭建gerrit+gitweb代码审核系统

如何搭建基于ldap和mysql的gerrit服务

Gitlab+Gerrit+Ldap+nginx+mysql 之Gerrit搭建与配置

Centos搭建CI持续集成系统环境--部署gerrit环境完整记录

crucible VS gerrit

搭建gerrit服务详细步骤