安装Redmine + Mercuria,推送,中止:授权失败

时间:2011-10-13 09:44:35

标签: ubuntu mercurial installation redmine

我尝试按照本手册操作。 http://www.redmine.org/projects/redmine/wiki/HowToInstallRedmineOnUbuntuServer

我在VMware上使用Desktop Ubuntu 11.04

通过手册我做了以下事情:

  • 预安装
  • Redmine安装
  • Apache Integration
  • Mercurial Integration

一切似乎都有效,看起来很好。(网络界面确定,克隆测试报告确定)

但是当我:

hg push
pushing to http://192.168.1.10/hg/test
searching for changes
http authorization required
realm: Redmine Mercurial Repository
user: i try, root, linux user, mysql, redmine user
password:....
abort: authorization failed

我不知道他想要的用户名和密码。在var / hg / hgweb.config

[web]
allow_push = *
push_ssl = false

在Apache配置文件中

<Location /hg  >
    AuthType Basic
    AuthName "Redmine Mercurial Repository" 
    Require valid-user

1 个答案:

答案 0 :(得分:0)

我在这个网站上没有看到关于运行htaccess的一个词,它将创建用户/密码登录。这是您的AuthType Basic工作所必需的。此外,您不想使用AuthType Basics,您真的想要至少使用Digest类型(它使用了一个不错的哈希)。