Re: Failure during rb-install

2013-03-12 Thread arunkurse
Hi Please find the apache logs , if it can help you to determinte the root cause [Tue Mar 12 14:11:49 2013] [notice] Apache/2.2.15 (Unix) DAV/2 mod_wsgi/3.2 Python/2.6.6 configured -- resuming normal operations [Tue Mar 12 14:35:23 2013] [error] Exception KeyError: KeyError(-1216022704,)

Re: Failure during rb-install

2013-03-12 Thread arunkurse
Hi Christian Not clear. Here is the query.. Due to some reasons , the IP address of the system got changed .. Hence i did modify /etc/apache/conf/httpd.conf file to reflect new IP address . I restarted Apache services . Now Apache configuration looks fine after IP Address change.

Re: Failure during rb-install

2013-03-11 Thread Christian Hammond
Hi, Review Board and Apache expect to live on some interface that will remain consistent. Best to give your IP a domain and make sure that's configured correctly, and then tell both Apache and Review Board to use it. For Review Board, you can just go into your admin UI and change it in General Se

Re: Failure during rb-install

2013-03-10 Thread arunkurse
Hi Christian I took off some time from my regular work and could able to configure ReviewBoard Successfully . I have configured options like diff view , Email Notifications etc . The tools looks awsome . I would like to say "big Thanks" to you for taking up my silly questions.

Re: Failure during rb-install

2013-03-06 Thread Christian Hammond
Hi, This is all covered in the documentation. If you'd like one-on-one support to walk you through all the steps from here on out, we can offer a support contract. Christian On Mar 6, 2013, at 2:48, arunku...@gmail.com wrote: > Hi Christian > > Here is the problem which i am facing wit

Re: Failure during rb-install

2013-03-06 Thread arunkurse
Hi Christian Here is the problem which i am facing with SVN . How to i make ReviewBoard to point to SVN Location. We are using https version of SVN like https:// Hi All > > I am new to Review Board and trying to setup up internally in our > Environment . > I have installed reviewBoa

Re: Failure during rb-install

2013-03-06 Thread arunkurse
Hi Christian Many thanks for your support . I could able to configure Apache server successfully . I am exited to say that i am able to see reviewBoard Home Page . Now i would like to integrate this with SVN . I remember i have installed SVN using "yum install subversion". I have als

Re: Failure during rb-install

2013-03-05 Thread Christian Hammond
Given the number of issues you're hitting with this version of RHEL, have you considered something like a modern CentOS, Fedora, or Ubuntu? These all have a pretty good working Apache setup that shouldn't require all this hand-editing. Christian -- Christian Hammond - chip...@chipx86.com Review

Re: Failure during rb-install

2013-03-05 Thread arunkurse
Hi Ok.. Many thanks for the info . We are using httpd version 2.2 The httpd.conf file is as follows . If possible you can take a look and tell me what could be the issue ? [root@test conf]# cat httpd.conf ServerName DocumentRoot "/var/www/reviews.nonstop.com/htdocs"

Re: Failure during rb-install

2013-03-05 Thread Raja
what version of apache are you running. Checkout the module corresponding to "Allow" directive and see if you have that loaded. For e.g. in Apache 2.2, allow is controlled using mod_authz_host, but in trunk, its different. I would suggest talking to a sysadmin to find out how to enable the modules

Re: Failure during rb-install

2013-03-05 Thread arunkurse
Hi Hi Now i have done that . I restarted Apche again . Looks like it has gone ahead . Still i am not able to restart Apache and getting the below error [root@test conf]# service httpd restart Stopping httpd: [FAILED] Starting httpd: Syntax error on line 16 of /etc/httpd/conf/httpd.conf: Invali

Re: Failure during rb-install

2013-03-05 Thread Raja
I dont have a Redhat installation, but I think you have to add the module into httpd.conf explicitly. Can you search for LoadModule definitions in httpd.conf and add LoadModule wsgi_module modules/mod_wsgi.so and restart Apache? -- Want to help the Review Board project? Donate today at http://

Re: Failure during rb-install

2013-03-05 Thread arunkurse
Hi I installed using "yum install mod_wsgi" module . I tried to restart the Apache module and got the same error [root@test modules]# service httpd restart Stopping httpd:[FAILED] Starting httpd: Syntax error on line 8 of /etc/httpd/conf/httpd.c

Re: Failure during rb-install

2013-03-05 Thread Raja
You need to install mod_wsgi for your distribution. yum install mod_wsgi or apt-get install mod_wsgi depending on your distribution should fix this. On Wed, Mar 6, 2013 at 10:01 AM, wrote: > Hi > > I copied /var/www/reviews.nonstop.com/conf/apache-wsgi.conf to > /etc/httpd/conf/httpd.conf. >

Re: Failure during rb-install

2013-03-05 Thread arunkurse
Hi I copied /var/www/reviews.nonstop.com/conf/apache-wsgi.conf to /etc/httpd/conf/httpd.conf. I tried to restart Apche and got the below error [root@test conf]# service httpd restart Stopping httpd:[FAILED] Starting httpd: Syntax error on line

Re: Failure during rb-install

2013-03-05 Thread Raja
Hi Arun http://www.reviewboard.org/docs/manual/1.5/admin/sites/creating-sites/#apacheshows how to configure apache on debian based distributions. If you are not using one of those, you need to include the apache-wsgi.conf into apache. An easier way is to copy that file into /etc/httpd/conf.d as by

Re: Failure during rb-install

2013-03-05 Thread arunkurse
Hi Christian I could able to install Review Board successfully with rb-install script . Now i am the process of configuring Apache server on Linux system. I got confused with the documentation . Can you please help me copy files appropriately ? 1. My apache server is located at /etc/

Re: Failure during rb-install

2013-03-04 Thread Christian Hammond
Hi, At this point, it's a PostgreSQL configuration issue. You'll need to get that set up and working first. Sorry, I can't help too much there. Make sure you have a working database you can create tables on first (using the user you'll give rb-site), then nuke your site directory and try again.

Re: Failure during rb-install

2013-03-04 Thread arunkurse
Hi Christian Finally i could able to make some progress . I have chosen postgres SQL database . I have created a user called 'db1' and granted some privileges for that user . Now rb-install tell me that 'db1' role does not exist . [root@test Packages]# rb-site install /var/www/reviews.n

Re: Failure during rb-install

2013-03-04 Thread arunkurse
Hi christian Many thanks for the info . The version of python i am using is python-2.6.6-20.el6.i686 Please find output from my system [root@test /]# python Python 2.6.6 (r266:84292, Apr 11 2011, 15:52:27) [GCC 4.4.4 20100726 (Red Hat 4.4.4-13)] on linux2 Type "help", "copyright", "

Re: Failure during rb-install

2013-03-04 Thread Christian Hammond
We don't support Django 1.5. You will need to remove it from your site-packages directory and get 1.4.5. Christian -- Christian Hammond - chip...@chipx86.com Review Board - http://www.reviewboard.org VMware, Inc. - http://www.vmware.com On Mar 4, 2013, at 10:47 PM, arunku...@gmail.com wrote:

Re: Failure during rb-install

2013-03-04 Thread Christian Hammond
Hi, Sounds like there's some oddness on your system with locating the Django package, perhaps. Can you look in the output from your easy_install and make sure it's showing that it's getting Python 2.6 packages? Also, can you try typing this and see what happens? $ python >>> import dj

Failure during rb-install

2013-03-04 Thread arunkurse
Hi All I am new to Review Board and trying to setup up internally in our Environment . I have installed reviewBoard successfully with "easy_install ReviewBoard". easy_install failed to install Django and hence i had to install it manually . I have successfully created the Postgres S