[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Discussion message digest

From: <users-digest_at_subversion.tigris.org>
Date: Mon, 13 Jul 2009 00:14:11 -0700 (PDT)

Here are the messages that have been received prior to 7/13/09 12:14 AM:

Topic (messages 47,143 through 47,179):

svn client hangs on svn ls
         47,176 by : ComputerMinds <mike.dixon_at_computerminds.co.uk> sent on : Sun, 12 Jul 2009 22:24:16 -0700 (PDT)
 
svn merge --reintegrate does not think all changes merged
         47,171 by : Lenza McElrath <lenza_at_lenza.org> sent on : Sun, 12 Jul 2009 22:05:13 -0700
 
Discussion message digest
         47,143 by : users-digest_at_subversion.tigris.org sent on : Sun, 12 Jul 2009 00:16:52 -0700 (PDT)
 
DIGEST-MD5 SASL SVN
         47,179 by : Stacy Lucchese <stacylucchese_at_roadrunner.com> sent on : Sun, 12 Jul 2009 23:34:08 -0700
 

+----------------------------------------------------------------------+
| ETAS Mail Security - http://intranet.etasgroup.com/encryption |
+----------------------------------------------------------------------+
| - The message was not encrypted and not digitally signed |
+----------------------------------------------------------------------+

------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=1065&dsMessageId=2370857

To unsubscribe from this discussion, e-mail: [users-unsubscribe_at_subversion.tigris.org].

attached mail follows:


i have setup my svn server to use SASL DIGEST-MD5, but i cannot get
authentication to work
i get an infinite loop of the authentication dialog prompting me for user
id/pswd.
 
=======================================================================
in my svn.conf:
=======================================================================
pwcheck_method: auxprop
auxprop_plugin: sasldb
mech_list: DIGEST-MD5
sasldb_path: /home/svnowner/sasl/sasldb2

=======================================================================
when i list what packages i have (shows md5):
=======================================================================
[root_at_host sbin]# rpm -qa | grep sasl
cyrus-sasl-md5-2.1.22-4
cyrus-sasl-2.1.22-4
cyrus-sasl-lib-2.1.22-4
cyrus-sasl-plain-2.1.22-4
cyrus-sasl-devel-2.1.22-4

 
=======================================================================
when i try to install the sasl-md5 (its already installed):
=======================================================================
[root_at_host sbin]# yum install cyrus-sasl-md5-2.1.22-4
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
base | 1.1 kB 00:00
updates | 951 B 00:00
addons | 951 B 00:00
wiredtree | 951 B 00:00
extras | 1.1 kB 00:00
Excluding Packages in global exclude list
Finished
Setting up Install Process
Parsing package install arguments
Package cyrus-sasl-md5-2.1.22-4.i386 already installed and latest version
Nothing to do

 
=======================================================================
when i list the saslauthd mechanisms available (it doesnt show DIGEST-MD5):
=======================================================================
[root_at_host sbin]# saslauthd -v
saslauthd 2.1.22
authentication mechanisms: getpwent kerberos5 pam rimap shadow ldap

=======================================================================
everytime i try to connect via tortoiseSVN i see the following errors in my
log:
=======================================================================
Jul 12 23:09:37 host xinetd[1568]: xinetd Version 2.3.14 started with
libwrap loadavg labeled-networking options compiled in.
Jul 12 23:09:37 host xinetd[1568]: Started working: 2 available services
Jul 12 23:09:56 host xinetd[1568]: START: svn pid=7471 from=xx.xx.xx.xxx
Jul 12 23:09:56 host svnserve: auxpropfunc error invalid parameter supplied
 
=======================================================================
and im guessing that the errors are related to DIGEST-MD5 not being an
available mechanism?
 
can you PLEASE tell me how to get DIGEST-MD5 available for use in
authentication? ive been
looking at this for days and cant see what i am doing wrong. PLEASE HELP!
=======================================================================

attached mail follows:


We have been having the same problem and I've been looking for a solution for
a long time and just found this

http://ubuntu-virginia.ubuntuforums.org/showthread.php?t=948900

running that script has completely solved the problem.

Hope this helps someone!

Cheers,

Mike
http://www.computerminds.co.uk

-- 
View this message in context: http://www.nabble.com/svn-client-hangs-on-svn-ls-tp22288509p24456311.html
Sent from the Subversion Users mailing list archive at Nabble.com.

attached mail follows:


I am having a problem using the reintegrate functionality of SVN, and would
greatly appreciate some help. We recently upgraded from SVN 1.4.x to 1.6.1
and I was excited to take advantage of SVN's new merge capabilities. Here
is what I did:

  1) Created a new "feature" branch with "svn copy ^/trunk
^/branch/mybranch" and made changes in that branch
  2) From a mybranch working directory ran "svn merge ^/trunk"
  3) Resolved conflicts and commited change
  4) Change to trunk working directory and ran "svn merge --reintegrate
^/svn/branch/mybranch"

The last command gives me errors in the format:

  /branch/mybranch/directory
      Missing ranges: /loc/main/admin_cmds:<branch create revision>-<current
trunk revision>
  /branch/mybranch/directory/subdirectory
      Missing ranges: /loc/main/admin_cmds:<branch create revision>-<current
trunk revision>
  /branch/mybranch/directory/file.c
      Missing ranges: /loc/main/admin_cmds:<branch create revision>-<current
trunk revision>

The items that produced errors had their svn:mergeinfo modifed by the merge
command, but there are only entries for other branches (there is no
/trunk:RANGE
entry). I have searched for a solution to this, and it looks like other
people have had similar problems, but I have not been able to grok what is
going wrong and how to fix it. Most notably someone asked for help with the
same error a month ago:
http://subversion.tigris.org/ds/viewMessage.do?dsMessageId=2359090&dsForumId=1065.
The problem there was described as being caused by having subtree mergeinfo
that shouldn't be present, and the suggested solution was to "manually
remove all the subtree mergeinfo." So, a few questions:

  1) What can I do to successfully reintegrate my /branch/mybranch at this
point? (How do you manually remove subtree mergeinfo?)
  2) What is different about the items that are causing errors errors? (Why
am I getting this subtree mergeinfo on these items?)
  3) What can I do to make this process smoother going forward?
  4) What is the format for svn:mergeinfo? What is the best resource for
getting an in depth understand of how this stuff works?

Thank you so much for any information!

  -Lenza

attached mail follows:


+----------------------------------------------------------------------+
| ETAS Mail Security - http://intranet.etasgroup.com/encryption |
+----------------------------------------------------------------------+
| - The message was not encrypted and not digitally signed |
+----------------------------------------------------------------------+
Received on 2009-07-13 10:14:52 CEST

This is an archived mail posted to the Subversion Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.