`
scm002
  • 浏览: 317063 次
社区版块
存档分类
最新评论

搭建gerrit服务器(apache&nginx反向代理方式)

 
阅读更多

  这段时间,想搭建一个gerrit,用于代码托管,gerrit的搭建,网上有很多种教程,但是自己按照别人的教程逐步操作,一直出现诸多问题。最头痛的就是:
Configuration Error

Check the HTTP server's authentication settings.


      后来经过他人指点,才知道自己的原因。由于对Apache的反向代理的机制,没有清楚,导致寸步难行。现将搭建方式进行记载:

一.gerrit的搭建

     由于gerrit和Apache的安装,网上教程已经很多,这里就不一一说明了。本文主要讲解如何配置Apache的反向代理.

    本次搭建环境为VMware上的Ubuntu12.04,通过Windows上,ssh去操作。 Ubuntu虚拟机的ip地址为192.168.1.6,Windows的IP地址为192.168.1.3。搭建的gerrit服务器,在Windows上通过http://192.168.1.6:9999/进行访问。

   假定gerrit已经成功安装到Ubuntu,其路径为:/home/gerrit/review-gerrit

  进入etc路径,即/home/gerrit/review-gerrit/etc,这里贴出gerrit.config文件:

 

[html] view plain copy
  1. [gerrit]  
  2.     basePath = /home/gerrit/prj-source  
  3.     canonicalWebUrl = http://192.168.1.6:10000  
  4. [database]  
  5.     type = h2  
  6.     database = db/ReviewDB  
  7. [auth]  
  8.     type = HTTP  
  9. [sendemail]  
  10.     smtpServer = localhost  
  11. [container]  
  12.     user = root  
  13.     javaHome = /usr/lib/jvm/java-6-openjdk-amd64/jre  
  14. [sshd]  
  15.     listenAddress = *:29418  
  16. [httpd]  
  17.     listenUrl = http://*:10000  

      完成以上的步骤,比较简单,很多教程都有过描述。下面主要讲解Apache的反向代理。

      首先简单描述一下反向代理的基础:反向代理(Reverse Proxy)方式是指以代理服务器来接受internet上的连接请求,然后将请求转发给内部网络上的服务器,
并将从服务器上得到的结果返回给internet上请求连接的客户端,此时代理服务器对外就表现为一个反向代理服务器。

         例如我们想通过PC浏览器去访问http://192.168.1.6:9999,就是一个反向代理。在/home/gerrit/review- gerrit/etc/gerrit.config中,我们配置gerrit端口bind在10000,为啥外部通过访问端口9999,就可以打开 gerrit的web页面?

        原因就是Apache的反向代理功能。那就开始配置Apache吧!

        a.第一步,要在Apache上新增端口9999,用户监听网络事件。修改配置文件/etc/apache2/ports.conf。    

[html] view plain copy
  1. NameVirtualHost *:80  
  2. Listen 80  
  3. Listen 9999  

       b.第二步,增加反向代理的配置。/etc/apache2/sites-enabled/000-default.conf

[html] view plain copy
  1. <VirtualHost *:9999>  
  2.     ServerName 192.168.1.6  
  3.     ProxyPreserveHost On  
  4.     ProxyRequests Off  
  5.     <Proxy *>  
  6.         Order deny,allow  
  7.         Allow from all  
  8.     </Proxy>  
  9.     <Location />  
  10.       AuthType Basic  
  11.       AuthName "Welcomme to Gerrit Code Review Site!"  
  12.       Require valid-user  
  13.       AuthUserFile /home/gerrit/review-gerrit/htpasswd.conf  
  14.     </Location>  
  15.     ProxyPass / http://192.168.1.6:10000/  
  16.     proxyPassReverse / http://127.0.0.1:10000/  
  17. </VirtualHost>  

       c.完成以上配置,则成功。然后restart Apache和gerrit服务即可

     然后在pc浏览器上输入:http://192.168.1.6:9999/,则启动gerrit

     
      输入账号密码,显示如下:

   

       gerrit安装配置成功。

     如果不适用Apache进行反向代理,使用nginx则更加简单,直接修改一个文件就可以了。/etc/nginx/conf.d/gerrit.conf,没有这个文件,则直接touch gerrit.conf就可生成,然后编辑一下。

 

[html] view plain copy
  1. server {  
  2.      listen *:9999;  
  3.      server_name 192.168.1.6;  
  4.      allow   all;  
  5.      deny    all;  
  6.      auth_basic "Welcomme to Gerrit Code Review Site!";  
  7.      auth_basic_user_file /home/gerrit/review-gerrit/htpasswd.conf;  
  8.   
  9.      location / {  
  10.         proxy_pass  http://127.0.0.1:10000;  
  11.      }  
  12.    }  

    按照以上步骤,可以搭建一个gerrit服务器了。

   另外,关于gerrit服务器的后台权限&项目管控,还在逐步研究。

 

 

fix below error:

/etc/apache2/sites-enabled$ systemctl restart apache2
Job for apache2.service failed because the control process exited with error code. See "systemctl status apache2.service" and "journalctl -xe" for details.


:/etc/apache2/sites-enabled$ systemctl status apache2.service

 4月 24 23:35:52 review apache2[11436]: Output of config test was:
 4月 24 23:35:52 review apache2[11436]: AH00548: NameVirtualHost has no effect and will be removed in the next release /etc/apache2/ports.conf:5
 4月 24 23:35:52 review apache2[11436]: AH00526: Syntax error on line 3 of /etc/apache2/sites-enabled/000-default.conf:

 

FIX:

 

cd /etc/apache2/mods-enabled
ln -s /etc/apache2/mods-available/proxy.conf proxy.conf 
ln -s /etc/apache2/mods-available/proxy.load proxy.load 
 ln -s /etc/apache2/mods-available/proxy_http.load proxy_http.load


 

ubuntu15.10 restart apache2:
systemctl restart apache2

 

 

refer to:

http://blog.csdn.net/coder80/article/details/48176559
http://blog.csdn.net/ljchlx/article/details/22277311
 
 

ssh -p 29418 localhost gerrit gsql

I get the following error :-

fatal: newbie does not have "Access Database" capability.

How to give administrators database access in gerrit ?

 

Global capabilities are configured in the project.config file, e.g.

[capability]
       accessDatabase = group Administrators

mkdir tmp
cd tmp
git init
git remote add origin ssh://admin@remote.site.com:29418/All-Projects
git fetch origin refs/meta/config:refs/remotes/origin/meta/config
git checkout meta/config
[capability]
       accessDatabase = group Administrators

git commit -a
git push origin meta/config:meta/config
 
remote: ERROR:  In commit fc20c790fd92058305b0456b780cbd0745d9c490
remote: ERROR:  author email address hbxwshiquan@163.com
remote: ERROR:  does not match your user account.
remote: ERROR:
remote: ERROR:  You have not registered any email addresses.
remote: ERROR:
remote: ERROR:  To register an email address, please visit:
remote: ERROR:  http://review.sonymobile.com:8082/#/settings/contact
FIX:

gerrit2@ubuntu:~/review_site$ ./bin/gerrit.sh stop
Stopping Gerrit Code Review: OK
gerrit2@ubuntu:~/review_site$ ls bin
gerrit.sh  gerrit.war
gerrit2@ubuntu:~/review_site$ java -jar bin/gerrit.war gsql

 

 

select * from ACCOUNT_EXTERNAL_IDS;
update ACCOUNT_EXTERNAL_IDS set EMAIL_ADDRESS='alex.blewitt@example.com' where ACCOUNT_ID=1000000;
 
 
The authenticity of host '[review.example.com]:29418 ([192.168.1.103]:29418)' can't be established.
RSA key fingerprint is 42:4d:2e:2a:26:75:33:5a:75:08:7d:67:dd:07:f0:2e.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added '[review.example.com]:29418' (RSA) to the list of known hosts.
Permission denied (publickey).
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

其原因是ssh账号它默认使用的是email账号的id部分,而如果username和email的id部分不同的话就不对了

查看了repo help upload得到了答案:

review.URL.username:

Override the username used to connect to Gerrit Code Review. By default
the local part of the email address is used.

所以执行:

git config --global review.review.source.android.com.username MYNAME

后就OK了.

 

A mail thread about review.URL.username

http://osdir.com/ml/repo-discuss/2010-11/msg00074.html

分享到:
评论

相关推荐

    gerrit服务器搭建

    ### Gerrit服务器搭建详解 #### 一、简介 Gerrit是一款基于Git的代码审查工具,主要用于企业级软件开发过程中的代码审查与管理。本文将详细介绍如何搭建一个完整的Gerrit服务器,包括环境配置、安装步骤以及后续的...

    搭建CodeReview Gerrit服务器.docx

    搭建code review gerrit服务器 网上这类资料很多,但能够真正跑起来的很少,因此本人将祥细的配置过程写了出来,并运行成功,方便广大开发者受益于正确的文档.https://www.gerritcodereview.com/

    git+repo+gerrit代码服务器搭建

    本文将指导读者从头开始搭建一个完整的代码评审服务器,使用 Git、Repo 和 Gerrit 等工具。本篇文章将详细介绍每个步骤的配置过程,旨在帮助读者快速搭建一个功能完善的代码服务器。 代码服务器搭建步骤 名词解释 ...

    Gerrit 服务器搭建_Gerrit_

    2. 安装并配置 Servlet 容器,如 Apache Tomcat 或 Jetty,作为 Gerrit 的前端服务器。 3. 更新 Gerrit 的 `war` 文件到 Servlet 容器的 webapps 目录下。 4. 配置代理规则,使外部可以通过 HTTP 访问 Gerrit。 六...

    gerrit搭建流程(详细)

    搭建gerrit服务器详细操作流程,有任何问题可以留言,互相提高

    从远端下载repo镜像,然后推送到本地gerrit服务器

    ### 从远端下载repo镜像,然后推送到本地Gerrit服务器 #### 知识点一:Repo工具概述 Repo是Google为Android项目提供的一个分布式版本控制系统,它基于Git之上构建,主要用于管理大型项目的多仓库结构。通过Repo...

    windows搭建git审核平台.zip_Gerrit _gerrit windows_windows+gerrit

    在本文中,我们将深入探讨如何在Windows环境下搭建一个基于Git的代码审核平台——Gerrit。Gerrit是一个开源的代码审查系统,它允许开发者提交代码,并通过一个交互式的Web界面进行审查,确保代码的质量和一致性。...

    gerrit搭建相关说明

    9. 配置Nginx作为Gerrit的反向代理: 在`/home/server/nginx-1.6.0/conf/nginx.conf`中添加Gerrit的配置段,确保Gerrit监听的端口(默认为8080)映射到合适的URL。 10. 重启Nginx服务以应用新的配置: ``` sbin/...

    搭建自己的git gitweb gerrit服务器

    自己从零开始搭建git + gitweb + gerrit服务器 软硬件环境 物理机:Windows10 64位 VMware版本:VMware Workstation 12 Ubuntu版本:ubuntu-14.04-server-amd64.iso

    gerrit服务器中用于查看代码的插件-gitiles

    Gitiles是Gerrit代码审查系统中的一个插件,它被设计用来方便地浏览和查看存储在Gerrit服务器上的Git仓库的源代码。Gitiles提供了网页界面,使得用户可以直观地浏览项目文件、查看历史记录、比较不同版本之间的差异...

    Gerrit代码审核服务器搭建全过程

    配置Java环境从官网下载gerrit当前最新版本为2.14。安装MySQL通过如下命令安装Gerrit:按照提示一步步完成安装。有几个按转配置需要特别注意一下。关于Gerrit的Git仓库的保存地址:这个选项用于配置Gerrit的Git仓库...

    Gerrit搭建及权限配置.docx

    重启Apache2和Gerrit是Gerrit搭建的必要步骤。需要重启Apache2和Gerrit来应用配置更改。 常见错误处理 常见错误处理是Gerrit搭建的必要步骤。需要处理常见错误,如重启Apache2时遇到apache2: could not reliably ...

    CentOS7搭建gerrit 代码审查服务方法

    但为了方便外部访问,通常还需要配置反向代理,例如使用Nginx或Apache。在Nginx配置中,你需要创建一个新的虚拟主机,将HTTP请求转发到Gerrit的监听端口。这里仅提供Nginx配置示例,具体配置需根据实际情况调整: ``...

    CentOS下搭建Git,Gerrit Jenkins版本控制系统

    ### CentOS下搭建Git、Gerrit与Jenkins版本控制系统 #### 一、引言 ##### 1.1 文档目的 本文档旨在提供一个全面的指南,帮助读者在CentOS环境下搭建一套完整的版本控制系统,包括Git、Gerrit以及Jenkins。通过本...

    ldap+mysql+gerrit环境搭建

    ldap+mysql+gerrit环境搭建,简单介绍如何搭建gerrit代码检视系统

    gerrit搭建手册.docx

    在搭建Gerrit之前,我们需要进行一系列的系统配置和软件安装。以下是对文档内容的详细解析: 1. **系统安装**: - 系统平台:CentOS 7.5 - 系统版本:CentOS 1805 - 语言选择:简体中文 - 软件选择:选择带GUI...

    git学习--gerrit服务器搭建总结

    gerrit代码审核服务器:作为Git代码管理服务器,gerrit为git代码的提交引入了强制审核机制(除非特别的授权设置),所以也可以称gerrit服务器为代码审核服务器,其提供团队开发时的严格的代码审核入库机制,便于版本...

    gerrit服务器代码操作基本方法1

    《Gerrit服务器代码操作基本方法1》 Gerrit是一种强大的代码审查工具,常用于Git版本控制系统中,确保代码质量。本文档旨在详细介绍在Gerrit服务器上进行代码操作的基本流程,包括代码提交、审批和合并等核心步骤。...

Global site tag (gtag.js) - Google Analytics