Re: Error while setting up git repos in ReviewBoard by using Raw file URL mask:"Unable to authenticate against this repository using one of the supported authentication types."

2013-12-05 Thread Christian Hammond
When linking the account for a repository for the first time, you'll need
to give whatever username you associated with that SSH key on Gitolite.
Whether that's the admin account or another. I'd suggest creating a
read-only user account for this.

You should be able to use the public key Review Board shows you in the SSH
settings or repository creation page, and assign that on Gitolite.

Christian

-- 
Christian Hammond - chip...@chipx86.com
Review Board - http://www.reviewboard.org
Beanbag, Inc. - http://www.beanbaginc.com


On Thu, Dec 5, 2013 at 6:41 AM, Jillala Srinivas
wrote:

> Thanx for your reply. I enabled logs and I got the following error
> messages:
>
> ===
> 2013-12-05 14:32:50,043 - DEBUG -  - using kex diffie-hellman-group1-sha1;
> server key type ssh-rsa; cipher: local aes128-ctr, remote aes128-ctr; mac:
> local hmac-sha1, remote hmac-sha1; compression: local none, remote none
> 2013-12-05 14:32:50,058 - DEBUG -  - Switch to new keys ...
> 2013-12-05 14:32:50,074 - DEBUG -  - Trying SSH key
> e5ab730789d6c2de4f45e38602024cf9
> 2013-12-05 14:32:50,098 - DEBUG -  - userauth is OK
> 2013-12-05 14:32:50,109 - INFO -  - Authentication (publickey) failed.
> 2013-12-05 14:32:50,139 - DEBUG -  - Trying discovered key
> e5ab730789d6c2de4f45e38602024cf9 in /var/www/LCCReview/data/.ssh/id_rsa
> 2013-12-05 14:32:50,139 - DEBUG -  - userauth is OK
> 2013-12-05 14:32:50,148 - INFO -  - Authentication (publickey) failed.
> 2013-12-05 14:32:50,150 - DEBUG -  - userauth is OK
> 2013-12-05 14:32:50,150 - INFO -  - Authentication (password) failed.
> 2013-12-05 14:32:50,250 - DEBUG -  - EOF in transport thread
>
> ===
>
> First I tried by using the key by generated from reviewboard admin (UI)
> and given access for repos in gitolite conf. This time I got same error
> meesage.
> Second I tried with the key from $REVIEWBOARD_PATH/data/.ssh/id_rsa. This
> time also it failed with the same error message.
>
> Note: I am using gitolite for hosting repos, and I had given  admin
> username (one I created while installing reviewboard) in gitolite conf
> file. Is this correct?
>
> regds,
> Srinivas J
>
> On Wednesday, December 4, 2013 12:56:54 PM UTC+2, Christian Hammond wrote:
>
>> This generally means that the SSH key wasn't accepted.
>>
>> Can you check the reviewboard.log file (enable logging if it's turned off
>> and try again) and see if there's any more information along with this
>> error?
>>
>> Christian
>>
>> --
>> Christian Hammond - chi...@chipx86.com
>>
>> Review Board - http://www.reviewboard.org
>> Beanbag, Inc. - http://www.beanbaginc.com
>>
>>
>> On Wed, Dec 4, 2013 at 2:30 AM, Jillala Srinivas wrote:
>>
>>>
>>> I got the following error :
>>>
>>>- Unable to authenticate against this repository using one of the
>>>supported authentication types.
>>>
>>>  This error I got when I tried to setup by using the RAW file URL mask.
>>>
>>> On Tuesday, December 3, 2013 12:29:26 PM UTC+2, Jillala Srinivas wrote:
>>>>
>>>> Hi,
>>>>
>>>> I setup ReviewBoard to work with git. I'm using gitolite to host the
>>>> git repos. ReviewBoard is working when I have local clone and I have script
>>>> for synching repos.
>>>> However, I'm trying to setup by giving the Raw url mask of the gitweb,
>>>> it's giving the above said error.
>>>>
>>>> Working setup :
>>>> Hosting Service:Custom
>>>> Repository type:Git
>>>> Path:/path/to/local_cloned_repo/.git
>>>> Mirror Path:  g...@example.com:repo.git
>>>>
>>>>
>>>> Not working Setup:
>>>> Hosting Service:  Custom
>>>> Repository type:  Git
>>>> Path:  g...@example.com:repo.git   (i.e., output of
>>>>  "git remote show origin")
>>>> Mirror Path  g...@example.com:repo.git   (i.e., output of
>>>>  "git remote show origin")
>>>> Raw file URL mask:  http://eaxmple.com/gitweb/?p=repo.git
>>>>
>>>> Note: I have uploaded SSH public key of RB into git server and I have
>>>> given access rights for repos.
>>>>
>>>> Can anyone give some pointers on where I am doing wrong? How to setup
>>>> this to work with Raw file URL mask.
>>>>

Re: Error while setting up git repos in ReviewBoard by using Raw file URL mask:"Unable to authenticate against this repository using one of the supported authentication types."

2013-12-05 Thread Jillala Srinivas
Thanx for your reply. I enabled logs and I got the following error messages:
===
2013-12-05 14:32:50,043 - DEBUG -  - using kex diffie-hellman-group1-sha1; 
server key type ssh-rsa; cipher: local aes128-ctr, remote aes128-ctr; mac: 
local hmac-sha1, remote hmac-sha1; compression: local none, remote none
2013-12-05 14:32:50,058 - DEBUG -  - Switch to new keys ...
2013-12-05 14:32:50,074 - DEBUG -  - Trying SSH key 
e5ab730789d6c2de4f45e38602024cf9
2013-12-05 14:32:50,098 - DEBUG -  - userauth is OK
2013-12-05 14:32:50,109 - INFO -  - Authentication (publickey) failed.
2013-12-05 14:32:50,139 - DEBUG -  - Trying discovered key 
e5ab730789d6c2de4f45e38602024cf9 in /var/www/LCCReview/data/.ssh/id_rsa
2013-12-05 14:32:50,139 - DEBUG -  - userauth is OK
2013-12-05 14:32:50,148 - INFO -  - Authentication (publickey) failed.
2013-12-05 14:32:50,150 - DEBUG -  - userauth is OK
2013-12-05 14:32:50,150 - INFO -  - Authentication (password) failed.
2013-12-05 14:32:50,250 - DEBUG -  - EOF in transport thread
===

First I tried by using the key by generated from reviewboard admin (UI) and 
given access for repos in gitolite conf. This time I got same error meesage.
Second I tried with the key from $REVIEWBOARD_PATH/data/.ssh/id_rsa. This 
time also it failed with the same error message.

Note: I am using gitolite for hosting repos, and I had given  admin 
username (one I created while installing reviewboard) in gitolite conf 
file. Is this correct?

regds, 
Srinivas J

On Wednesday, December 4, 2013 12:56:54 PM UTC+2, Christian Hammond wrote:
>
> This generally means that the SSH key wasn't accepted.
>
> Can you check the reviewboard.log file (enable logging if it's turned off 
> and try again) and see if there's any more information along with this 
> error?
>
> Christian
>
> -- 
> Christian Hammond - chi...@chipx86.com 
> Review Board - http://www.reviewboard.org
> Beanbag, Inc. - http://www.beanbaginc.com
>
>
> On Wed, Dec 4, 2013 at 2:30 AM, Jillala Srinivas 
> 
> > wrote:
>
>>
>> I got the following error :
>>    
>>    - Unable to authenticate against this repository using one of the 
>>supported authentication types.
>>
>>  This error I got when I tried to setup by using the RAW file URL mask.
>>
>> On Tuesday, December 3, 2013 12:29:26 PM UTC+2, Jillala Srinivas wrote:
>>>
>>> Hi, 
>>>
>>> I setup ReviewBoard to work with git. I'm using gitolite to host the git 
>>> repos. ReviewBoard is working when I have local clone and I have script for 
>>> synching repos.
>>> However, I'm trying to setup by giving the Raw url mask of the gitweb, 
>>> it's giving the above said error.
>>>
>>> Working setup :
>>> Hosting Service:Custom
>>> Repository type:Git
>>> Path:/path/to/local_cloned_repo/.git
>>> Mirror Path:  g...@example.com:repo.git
>>>
>>>
>>> Not working Setup:
>>> Hosting Service:  Custom
>>> Repository type:  Git
>>> Path:  g...@example.com:repo.git   (i.e., output of 
>>>  "git remote show origin")
>>> Mirror Path  g...@example.com:repo.git   (i.e., output of 
>>>  "git remote show origin")
>>> Raw file URL mask:  http://eaxmple.com/gitweb/?p=repo.git
>>>
>>> Note: I have uploaded SSH public key of RB into git server and I have 
>>> given access rights for repos.
>>>
>>> Can anyone give some pointers on where I am doing wrong? How to setup 
>>> this to work with Raw file URL mask.
>>>
>>> Thanks and regds, 
>>> Srinivas Reddy
>>>
>>  -- 
>> Get the Review Board Power Pack at http://www.reviewboard.org/powerpack/
>> ---
>> Sign up for Review Board hosting at RBCommons: https://rbcommons.com/
>> ---
>> Happy user? Let us know at http://www.reviewboard.org/users/
>> --- 
>> You received this message because you are subscribed to the Google Groups 
>> "reviewboard" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to reviewboard...@googlegroups.com .
>> For more options, visit https://groups.google.com/groups/opt_out.
>>
>
>

-- 
Get the Review Board Power Pack at http://www.reviewboard.org/powerpack/
---
Sign up for Review Board hosting at RBCommons: https://rbcommons.com/
---
Happy user? Let us know at http://www.reviewboard.org/users/
--- 
You received this message because you are subscribed to the Google Groups 
"reviewboard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Error while setting up git repos in ReviewBoard by using Raw file URL mask:"Unable to authenticate against this repository using one of the supported authentication types."

2013-12-04 Thread Christian Hammond
This generally means that the SSH key wasn't accepted.

Can you check the reviewboard.log file (enable logging if it's turned off
and try again) and see if there's any more information along with this
error?

Christian

-- 
Christian Hammond - chip...@chipx86.com
Review Board - http://www.reviewboard.org
Beanbag, Inc. - http://www.beanbaginc.com


On Wed, Dec 4, 2013 at 2:30 AM, Jillala Srinivas
wrote:

>
> I got the following error :
>
>    - Unable to authenticate against this repository using one of the
>supported authentication types.
>
>  This error I got when I tried to setup by using the RAW file URL mask.
>
> On Tuesday, December 3, 2013 12:29:26 PM UTC+2, Jillala Srinivas wrote:
>>
>> Hi,
>>
>> I setup ReviewBoard to work with git. I'm using gitolite to host the git
>> repos. ReviewBoard is working when I have local clone and I have script for
>> synching repos.
>> However, I'm trying to setup by giving the Raw url mask of the gitweb,
>> it's giving the above said error.
>>
>> Working setup :
>> Hosting Service:Custom
>> Repository type:Git
>> Path:/path/to/local_cloned_repo/.git
>> Mirror Path:  g...@example.com:repo.git
>>
>>
>> Not working Setup:
>> Hosting Service:  Custom
>> Repository type:  Git
>> Path:  g...@example.com:repo.git   (i.e., output of
>>  "git remote show origin")
>> Mirror Path  g...@example.com:repo.git   (i.e., output of
>>  "git remote show origin")
>> Raw file URL mask:  http://eaxmple.com/gitweb/?p=repo.git
>>
>> Note: I have uploaded SSH public key of RB into git server and I have
>> given access rights for repos.
>>
>> Can anyone give some pointers on where I am doing wrong? How to setup
>> this to work with Raw file URL mask.
>>
>> Thanks and regds,
>> Srinivas Reddy
>>
>  --
> Get the Review Board Power Pack at http://www.reviewboard.org/powerpack/
> ---
> Sign up for Review Board hosting at RBCommons: https://rbcommons.com/
> ---
> Happy user? Let us know at http://www.reviewboard.org/users/
> ---
> You received this message because you are subscribed to the Google Groups
> "reviewboard" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to reviewboard+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/groups/opt_out.
>

-- 
Get the Review Board Power Pack at http://www.reviewboard.org/powerpack/
---
Sign up for Review Board hosting at RBCommons: https://rbcommons.com/
---
Happy user? Let us know at http://www.reviewboard.org/users/
--- 
You received this message because you are subscribed to the Google Groups 
"reviewboard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Error while setting up git repos in ReviewBoard by using Raw file URL mask:"Unable to authenticate against this repository using one of the supported authentication types."

2013-12-04 Thread Jillala Srinivas

I got the following error :
   
   - Unable to authenticate against this repository using one of the 
   supported authentication types.

 This error I got when I tried to setup by using the RAW file URL mask.

On Tuesday, December 3, 2013 12:29:26 PM UTC+2, Jillala Srinivas wrote:
>
> Hi, 
>
> I setup ReviewBoard to work with git. I'm using gitolite to host the git 
> repos. ReviewBoard is working when I have local clone and I have script for 
> synching repos.
> However, I'm trying to setup by giving the Raw url mask of the gitweb, 
> it's giving the above said error.
>
> Working setup :
> Hosting Service:Custom
> Repository type:Git
> Path:/path/to/local_cloned_repo/.git
> Mirror Path:  g...@example.com:repo.git
>
>
> Not working Setup:
> Hosting Service:  Custom
> Repository type:  Git
> Path:  g...@example.com:repo.git   (i.e., output of 
>  "git remote show origin")
> Mirror Path  g...@example.com:repo.git   (i.e., output of  "git 
> remote show origin")
> Raw file URL mask:  http://eaxmple.com/gitweb/?p=repo.git
>
> Note: I have uploaded SSH public key of RB into git server and I have 
> given access rights for repos.
>
> Can anyone give some pointers on where I am doing wrong? How to setup this 
> to work with Raw file URL mask.
>
> Thanks and regds, 
> Srinivas Reddy
>

-- 
Get the Review Board Power Pack at http://www.reviewboard.org/powerpack/
---
Sign up for Review Board hosting at RBCommons: https://rbcommons.com/
---
Happy user? Let us know at http://www.reviewboard.org/users/
--- 
You received this message because you are subscribed to the Google Groups 
"reviewboard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Error while setting up git repos in ReviewBoard by using Raw file URL mask:"Unable to authenticate against this repository using one of the supported authentication types."

2013-12-03 Thread David Trowbridge
I don't see any error message in here?

-David


On Tue, Dec 3, 2013 at 2:29 AM, Jillala Srinivas
wrote:

> Hi,
>
> I setup ReviewBoard to work with git. I'm using gitolite to host the git
> repos. ReviewBoard is working when I have local clone and I have script for
> synching repos.
> However, I'm trying to setup by giving the Raw url mask of the gitweb,
> it's giving the above said error.
>
> Working setup :
> Hosting Service:Custom
> Repository type:Git
> Path:/path/to/local_cloned_repo/.git
> Mirror Path:  g...@example.com:repo.git
>
>
> Not working Setup:
> Hosting Service:  Custom
> Repository type:  Git
> Path:  g...@example.com:repo.git   (i.e., output of
>  "git remote show origin")
> Mirror Path  g...@example.com:repo.git   (i.e., output of
>  "git remote show origin")
> Raw file URL mask:  http://eaxmple.com/gitweb/?p=repo.git
>
> Note: I have uploaded SSH public key of RB into git server and I have
> given access rights for repos.
>
> Can anyone give some pointers on where I am doing wrong? How to setup this
> to work with Raw file URL mask.
>
> Thanks and regds,
> Srinivas Reddy
>
> --
> Get the Review Board Power Pack at http://www.reviewboard.org/powerpack/
> ---
> Sign up for Review Board hosting at RBCommons: https://rbcommons.com/
> ---
> Happy user? Let us know at http://www.reviewboard.org/users/
> ---
> You received this message because you are subscribed to the Google Groups
> "reviewboard" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to reviewboard+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/groups/opt_out.
>

-- 
Get the Review Board Power Pack at http://www.reviewboard.org/powerpack/
---
Sign up for Review Board hosting at RBCommons: https://rbcommons.com/
---
Happy user? Let us know at http://www.reviewboard.org/users/
--- 
You received this message because you are subscribed to the Google Groups 
"reviewboard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Error while setting up git repos in ReviewBoard by using Raw file URL mask:"Unable to authenticate against this repository using one of the supported authentication types."

2013-12-03 Thread Jillala Srinivas
Hi, 

I setup ReviewBoard to work with git. I'm using gitolite to host the git 
repos. ReviewBoard is working when I have local clone and I have script for 
synching repos.
However, I'm trying to setup by giving the Raw url mask of the gitweb, it's 
giving the above said error.

Working setup :
Hosting Service:Custom
Repository type:Git
Path:/path/to/local_cloned_repo/.git
Mirror Path:  g...@example.com:repo.git


Not working Setup:
Hosting Service:  Custom
Repository type:  Git
Path:  g...@example.com:repo.git   (i.e., output of 
 "git remote show origin")
Mirror Path  g...@example.com:repo.git   (i.e., output of  "git 
remote show origin")
Raw file URL mask:  http://eaxmple.com/gitweb/?p=repo.git

Note: I have uploaded SSH public key of RB into git server and I have given 
access rights for repos.

Can anyone give some pointers on where I am doing wrong? How to setup this 
to work with Raw file URL mask.

Thanks and regds, 
Srinivas Reddy

-- 
Get the Review Board Power Pack at http://www.reviewboard.org/powerpack/
---
Sign up for Review Board hosting at RBCommons: https://rbcommons.com/
---
Happy user? Let us know at http://www.reviewboard.org/users/
--- 
You received this message because you are subscribed to the Google Groups 
"reviewboard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Setting up Reviewboard with Git gives Unable to authenticate against this repository using one of the supported authentication types error

2013-04-30 Thread David Trowbridge
Connecting to git repositories requires using the "Raw File URL" and some
kind of frontend like cgit or gitweb, due to the fact that the git protocol
doesn't support fetching individual blobs. You can't just use the clone url.

Please see
http://www.reviewboard.org/docs/manual/1.7/admin/configuration/repositories/#raw-file-urlsfor
more information.

-David


On Tue, Apr 30, 2013 at 12:38 PM,  wrote:

> Hi,
> My Git repo is of the form :
>
> git@ipaddress:www. This is the exact string I use to run git clone.
>
> I have the ssh keys generated for reviewboard and installed on the Git
> server.
>
> When i try to setup the repository with Reviewboard with following settings
>
> *Name*: GitDemo
> *HostingService*: Custom
> *RepositoryType*: Git
> *Path:*git@ipaddress:www
>
> It gives me the following error:
>
>    - Unable to authenticate against this repository using one of the
>supported authentication types
>
> Any pointers will be appreciated.
>
>
> Thanks,
>
> M
>
> --
> Want to help the Review Board project? Donate today at
> http://www.reviewboard.org/donate/
> Happy user? Let us know at http://www.reviewboard.org/users/
> -~--~~~~--~~--~--~---
> To unsubscribe from this group, send email to
> reviewboard+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/reviewboard?hl=en
> ---
> You received this message because you are subscribed to the Google Groups
> "reviewboard" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to reviewboard+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/groups/opt_out.
>
>
>

-- 
Want to help the Review Board project? Donate today at 
http://www.reviewboard.org/donate/
Happy user? Let us know at http://www.reviewboard.org/users/
-~--~~~~--~~--~--~---
To unsubscribe from this group, send email to 
reviewboard+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/reviewboard?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"reviewboard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: Unable to authenticate against this repository using one of the supported authentication types.

2012-08-28 Thread zhihang wang
ssh key should be provided.

On 8月28日, 上午8时53分, zhihang wang  wrote:
> No. I don't know how to set up an SSH key to use for RB.
>
> On 8月27日, 下午1时48分, Christian Hammond  wrote:
>
>
>
>
>
>
>
> > I'd need to know more about how you have your Git repository and your
> > Review Board repository information configured.
>
> > Did you set up an SSH key?
>
> > Christian
>
> > --
> > Christian Hammond - chip...@chipx86.com
> > Review Board -http://www.reviewboard.org
> > VMware, Inc. -http://www.vmware.com
>
> > On Sun, Aug 26, 2012 at 10:00 PM, zhihang wang 
> > wrote:
>
> > > Hello, I have installed reviewboard on ubuntu 10.04.
> > > I want to add a repository to reviewboard. My repository is managed by
> > > gitolite.
> > > But when I add a repository to reviewborad, it says:
>
> > > Unable to authenticate against this repository using one of the
> > > supported authentication types.
>
> > > How to resolve this problem?
>
> > > --
> > > Want to help the Review Board project? Donate today at
> > >http://www.reviewboard.org/donate/
> > > Happy user? Let us know athttp://www.reviewboard.org/users/
> > > -~--~~~~--~~--~--~---
> > > To unsubscribe from this group, send email to
> > > reviewboard+unsubscr...@googlegroups.com
> > > For more options, visit this group at
> > >http://groups.google.com/group/reviewboard?hl=en

-- 
Want to help the Review Board project? Donate today at 
http://www.reviewboard.org/donate/
Happy user? Let us know at http://www.reviewboard.org/users/
-~--~~~~--~~--~--~---
To unsubscribe from this group, send email to 
reviewboard+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/reviewboard?hl=en


Re: Unable to authenticate against this repository using one of the supported authentication types.

2012-08-27 Thread zhihang wang
No. I don't know how to set up an SSH key to use for RB.

On 8月27日, 下午1时48分, Christian Hammond  wrote:
> I'd need to know more about how you have your Git repository and your
> Review Board repository information configured.
>
> Did you set up an SSH key?
>
> Christian
>
> --
> Christian Hammond - chip...@chipx86.com
> Review Board -http://www.reviewboard.org
> VMware, Inc. -http://www.vmware.com
>
> On Sun, Aug 26, 2012 at 10:00 PM, zhihang wang wrote:
>
>
>
>
>
>
>
> > Hello, I have installed reviewboard on ubuntu 10.04.
> > I want to add a repository to reviewboard. My repository is managed by
> > gitolite.
> > But when I add a repository to reviewborad, it says:
>
> > Unable to authenticate against this repository using one of the
> > supported authentication types.
>
> > How to resolve this problem?
>
> > --
> > Want to help the Review Board project? Donate today at
> >http://www.reviewboard.org/donate/
> > Happy user? Let us know athttp://www.reviewboard.org/users/
> > -~--~~~~--~~--~--~---
> > To unsubscribe from this group, send email to
> > reviewboard+unsubscr...@googlegroups.com
> > For more options, visit this group at
> >http://groups.google.com/group/reviewboard?hl=en

-- 
Want to help the Review Board project? Donate today at 
http://www.reviewboard.org/donate/
Happy user? Let us know at http://www.reviewboard.org/users/
-~--~~~~--~~--~--~---
To unsubscribe from this group, send email to 
reviewboard+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/reviewboard?hl=en


Re: Unable to authenticate against this repository using one of the supported authentication types.

2012-08-26 Thread Christian Hammond
I'd need to know more about how you have your Git repository and your
Review Board repository information configured.

Did you set up an SSH key?

Christian

-- 
Christian Hammond - chip...@chipx86.com
Review Board - http://www.reviewboard.org
VMware, Inc. - http://www.vmware.com


On Sun, Aug 26, 2012 at 10:00 PM, zhihang wang wrote:

> Hello, I have installed reviewboard on ubuntu 10.04.
> I want to add a repository to reviewboard. My repository is managed by
> gitolite.
> But when I add a repository to reviewborad, it says:
>
> Unable to authenticate against this repository using one of the
> supported authentication types.
>
> How to resolve this problem?
>
> --
> Want to help the Review Board project? Donate today at
> http://www.reviewboard.org/donate/
> Happy user? Let us know at http://www.reviewboard.org/users/
> -~--~~~~--~~--~--~---
> To unsubscribe from this group, send email to
> reviewboard+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/reviewboard?hl=en
>

-- 
Want to help the Review Board project? Donate today at 
http://www.reviewboard.org/donate/
Happy user? Let us know at http://www.reviewboard.org/users/
-~--~~~~--~~--~--~---
To unsubscribe from this group, send email to 
reviewboard+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/reviewboard?hl=en

Unable to authenticate against this repository using one of the supported authentication types.

2012-08-26 Thread zhihang wang
Hello, I have installed reviewboard on ubuntu 10.04.
I want to add a repository to reviewboard. My repository is managed by gitolite.
But when I add a repository to reviewborad, it says:

Unable to authenticate against this repository using one of the supported 
authentication types.

How to resolve this problem?

-- 
Want to help the Review Board project? Donate today at 
http://www.reviewboard.org/donate/
Happy user? Let us know at http://www.reviewboard.org/users/
-~--~~~~--~~--~--~---
To unsubscribe from this group, send email to 
reviewboard+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/reviewboard?hl=en