You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@subversion.apache.org by Masaru Kitajima <ta...@gmail.com> on 2012/02/07 21:17:27 UTC

Subversion reports error.

Hello all,

I haven't subscribed to this mailing list. But I have a problem
and need your helps.

I installed Subversion 1.6.15 on a rented server. The installation
seemed successful.

I'm not sure what machine they use, but have some information.
The server running FreeBSD 7.1-RELEASE-p16i386.
CPU is Intel Xeon CPU E3110@3GHz.
Memory is 3.25GB.
Apache version 1.3.42.

When I tried to confirm if the installation was well done using
"svn info svn+ssh://section-9@section-9.sakura.ne.jp/home/section-9/svn/reps",
the server said
"( failure ( ( 2 86:Error in child process: posix_spawn of 'usr/bin/ssh'
 failed: No such file or directory 84:/SourceCache/subversion/subversion-44.1/subversion/subversion/libsvn_ra_svn/client.c 457 ) ) ) svn: Can't create 
tunnel: No such file or directory".

I double-checked the username and location of the repository, but no mistakes
were found.

So what's the problem and how can I solve this?

Please reply me at tachi.silver@gmail.com as I haven't subscribed this mailing
list.

Please help me.

Kindest regards,
Masaru

<><><><><><><><><><><><><><><><><><><><><><><><><><>
Manager / Photographer / Lecturer / Writer
Masaru Kitajima

E-mail:tachi.silver@gmail.com
<><><><><><><><><><><><><><><><><><><><><><><><><><>


Re: Subversion reports error.

Posted by Masaru Kitajima <ta...@gmail.com>.
Hi, Stefan!

Thanks for your e-mail.

On 2012/02/08, at 6:19, Stefan Sperling wrote:
> On Tue, Feb 07, 2012 at 03:08:12PM -0600, Ryan Schmidt wrote:
>>> /usr/bin_ssh exists and works. So, I need to rebuild Subversion, I understand.
>>> But how can I tell it the correct ssh path?
>> 
>> I'm not sure, I just assumed that, since the error message said "usr/bin/ssh", which is not a valid path, instead of "/usr/bin/ssh", that something must be telling Subversion to use that wrong path. Do you perhaps have an environment variable set (such as SVN_SSH) that mentions that path? Or something in your .profile, .bash_profile, .bashrc, etc.?
> 
> There is no need to recompile.
> 
> Try setting the "ssh" option in ~/.subversion/config ([tunnels] section)
> to this: ssh = /usr/bin/ssh -q

I've already done this. But nothing was changed.

> Also make sure you don't have an SVN_SSH environment variable
> set to some bogus value.

No, there's no SVN_SSH environment variable.

Kindest regards,
Msaru


<><><><><><><><><><><><><><><><><><><><><><><><><><>
Manager / Photographer / Lecturer / Writer
Masaru Kitajima

E-mail:tachi.silver@gmail.com
blog:http://www.section-9.jp/blog/bluez/

<><><><><><><><><><><><><><><><><><><><><><><><><><>


Re: Subversion reports error.

Posted by Stefan Sperling <st...@elego.de>.
On Tue, Feb 07, 2012 at 03:08:12PM -0600, Ryan Schmidt wrote:
> > /usr/bin_ssh exists and works. So, I need to rebuild Subversion, I understand.
> > But how can I tell it the correct ssh path?
> 
> I'm not sure, I just assumed that, since the error message said "usr/bin/ssh", which is not a valid path, instead of "/usr/bin/ssh", that something must be telling Subversion to use that wrong path. Do you perhaps have an environment variable set (such as SVN_SSH) that mentions that path? Or something in your .profile, .bash_profile, .bashrc, etc.?
 
There is no need to recompile.

Try setting the "ssh" option in ~/.subversion/config ([tunnels] section)
to this: ssh = /usr/bin/ssh -q

Also make sure you don't have an SVN_SSH environment variable
set to some bogus value.

Re: Subversion reports error.

Posted by Masaru Kitajima <ta...@gmail.com>.
Daniel,

Thank you.

TO ALL>
Finally, I found that it was my local config file error. One of my
friends told me that there is a Macintosh HD/Users/username/.subversion/config
file.

The .subversion directory start with "." so I couldn't find it from Finder.
using terminal and checked [tunnels] section. And there found 
ssh = $SVN_SSH usr/bin/ssh line. I corrected it to ssh = $SVN_SSH /usr/bin/ssh
and tried svn info. Then it works correctly.

Thank you for your help guys.

Last thing to do is to configure Dreamweaver.

Thanks again.

Kindest regards,
Masaru

On 2012/02/09, at 22:22, Daniel Shahaf wrote:
> Running almost any 'svn' command will suffice.  You can even run 'svn
> info' (no arguments) outside of a working copy and it will still
> read or create the configuration files.
> 
> Masaru Kitajima wrote on Thu, Feb 09, 2012 at 10:11:50 +0900:
>> Daniel,
>> 
>> In Mac OS X, we should use dtrace command. Its command is like
>> "sudo dtrace -n "syscall::open:entry, syscall::stat:entry, syscall::stat64:entry / execname == \"svn\" / {trace( copyinstr(arg0))}" > dtrace.txt".
>> 
>> I tried this and then tried
>> "svn info svn+ssh://section-9@section-9.sakura.ne.jp/home/section-9/svn/reps".
>> 
>> Then, I don't know why, dtrace stopped automatically and nothing is recorded
>> in dtrace.txt.
>> 
>> Do you have any solutions?
>> 
>> Kindest regards,
>> Masaru
>> 
>> On 2012/02/09, at 9:49, Daniel Shahaf wrote:
>>> Run svn under a syscall tracer (such as strace, truss, or local
>>> equivalent), and  you'll see an open(2) call for the config file.  (Ryan
>>> or someone else may be able to tell you what 'local equivalent' is.)
>>> 
>>> I believe you already looked for $SVN_SSH in your environment upthread
>>> (and found that it was, properly, undefined).
>>> 
>>> (Technically, it's also possible that 'svn' is a shell alias, or shell
>>> function, or wrapper script, that changes the environment before running
>>> the 'svn' binary.  This isn't very likely, but you may want to rule it
>>> out nonetheless.)
>>> 
>>> Good luck,
>>> 
>>> Daniel
>>> 
>>> Masaru Kitajima wrote on Thu, Feb 09, 2012 at 09:29:27 +0900:
>>>> Daniel,
>>>> 
>>>> Thanks for your kind help.
>>>> 
>>>> When I typed a command you suggested, server said
>>>> "( success ( 2 2 ( ) ( edit-pipeline svndiff1 absent-entries commit-revprops depth log-revprops partial-replay ) ) ) ".
>>>> 
>>>> And it's same as without -q option.
>>>> 
>>>> So, the ball is in my court.
>>>> 
>>>> I'm not sure where my ssh tunnel defined with Mac OS X 10.7.
>>>> 
>>>> Do you have any idea?
>>>> 
>>>> Kindest regards,
>>>> Masaru
>>>> 
>>>> On 2012/02/09, at 9:11, Daniel Shahaf wrote:
>>>>> Masaru,
>>>>> 
>>>>> Does 'ssh -q section-9@section-9.sakura.ne.jp svnserve -t' print the
>>>>> server greeting (like it does without -q)?
>>>>> 
>>>>> 1. If it does not print a greeting, you'll have to define:
>>>>>  [tunnels]
>>>>>  ssh = $SVN_SSH ssh
>>>>> (without anything else on the second line) in your system-wide or
>>>>> per-user configuration file.  (on Unixy systems: /etc/subversion/config
>>>>> (if not changed by the OS packager) or ~/.subversion/config)
>>>>> 
>>>>> 2. If it does print a greeting, then the ball is in your court.
>>>>> You'll have to follow the instructions we've already provided (about
>>>>> looking for the 'ssh' tunnel defined wrongly in your environment or in
>>>>> your config files).  If those aren't clear, do not hesitate to ask for
>>>>> clarification.
>>>>> 
>>>>> Good luck,
>>>>> 
>>>>> Daniel
>>>>> 
>>>>> 
>>>>> Masaru Kitajima wrote on Thu, Feb 09, 2012 at 08:27:53 +0900:
>>>>>> Rian,
>>>>>> 
>>>>>> I see. I'm happy to hear that it's not a bug and it's expected behavior.
>>>>>> 
>>>>>> Still I can't connect to Subversion using svn+ssh protocol. And my team
>>>>>> is worrying about it to manage their source files.
>>>>>> 
>>>>>> Hope to solve this problem soon...
>>>>>> 
>>>>>> Kindest regards,
>>>>>> Masaru
>>>>>> 
>>>>>> On 2012/02/09, at 8:23, Ryan Schmidt wrote:
>>>>>> 
>>>>>>> 
>>>>>>> On Feb 8, 2012, at 15:41, Alagazam.net Subversion wrote:
>>>>>>>> On Feb 7, 2012, at 15:44, Masaru Kitajima wrote:
>>>>>>>>> On 2012/02/08, at 6:36, Daniel Shahaf wrote:
>>>>>>>>>> What is the output of
>>>>>>>>>> 
>>>>>>>>>> % ssh section-9@section-9.sakura.ne.jp svnserve -t
>>>>>>>>> 
>>>>>>>>> It is as below:
>>>>>>>>> 
>>>>>>>>> ( success ( 2 2 ( ) ( edit-pipeline svndiff1 absent-entries commit-revprops depth log-revprops partial-replay ) ) ) 
>>>>>>>>> 
>>>>>>>>> and then stops. A prompt is not shown.
>>>>>>> 
>>>>>>>> 
>>>>>>>> This symptom of not getting any prompt back reminds me of a totally
>>>>>>>> non-svn related "bug" but a network error I encountered some time ago.
>>>>>>> 
>>>>>>> Not seeing a prompt in this case is not a bug; it's expected behavior. svnserve is not an interactive program that has a prompt. It's a Subversion server; the above test demonstrated that svnserve is running correctly and is waiting for a Subversion client to connect to it.
>>>>>>> 
>>>>>>> 
>>>>>>> 
>>>>>> 
>>>>>> <><><><><><><><><><><><><><><><><><><><><><><><><><>
>>>>>> Manager / Photographer / Lecturer / Writer
>>>>>> Masaru Kitajima
>>>>>> 
>>>>>> E-mail:tachi.silver@gmail.com
>>>>>> blog:http://www.section-9.jp/blog/bluez/
>>>>>> 
>>>>>> <><><><><><><><><><><><><><><><><><><><><><><><><><>
>>>>>> 
>>>> 
>>>> <><><><><><><><><><><><><><><><><><><><><><><><><><>
>>>> Manager / Photographer / Lecturer / Writer
>>>> Masaru Kitajima
>>>> 
>>>> E-mail:tachi.silver@gmail.com
>>>> blog:http://www.section-9.jp/blog/bluez/
>>>> 
>>>> <><><><><><><><><><><><><><><><><><><><><><><><><><>
>>>> 
>> 
>> <><><><><><><><><><><><><><><><><><><><><><><><><><>
>> Manager / Photographer / Lecturer / Writer
>> Masaru Kitajima
>> 
>> E-mail:tachi.silver@gmail.com
>> blog:http://www.section-9.jp/blog/bluez/
>> 
>> <><><><><><><><><><><><><><><><><><><><><><><><><><>
>> 

<><><><><><><><><><><><><><><><><><><><><><><><><><>
Manager / Photographer / Lecturer / Writer
Masaru Kitajima

E-mail:tachi.silver@gmail.com
blog:http://www.section-9.jp/blog/bluez/

<><><><><><><><><><><><><><><><><><><><><><><><><><>


Re: Subversion reports error.

Posted by Daniel Shahaf <da...@elego.de>.
Running almost any 'svn' command will suffice.  You can even run 'svn
info' (no arguments) outside of a working copy and it will still
read or create the configuration files.

Masaru Kitajima wrote on Thu, Feb 09, 2012 at 10:11:50 +0900:
> Daniel,
> 
> In Mac OS X, we should use dtrace command. Its command is like
> "sudo dtrace -n "syscall::open:entry, syscall::stat:entry, syscall::stat64:entry / execname == \"svn\" / {trace( copyinstr(arg0))}" > dtrace.txt".
> 
> I tried this and then tried
> "svn info svn+ssh://section-9@section-9.sakura.ne.jp/home/section-9/svn/reps".
> 
> Then, I don't know why, dtrace stopped automatically and nothing is recorded
> in dtrace.txt.
> 
> Do you have any solutions?
> 
> Kindest regards,
> Masaru
> 
> On 2012/02/09, at 9:49, Daniel Shahaf wrote:
> > Run svn under a syscall tracer (such as strace, truss, or local
> > equivalent), and  you'll see an open(2) call for the config file.  (Ryan
> > or someone else may be able to tell you what 'local equivalent' is.)
> > 
> > I believe you already looked for $SVN_SSH in your environment upthread
> > (and found that it was, properly, undefined).
> > 
> > (Technically, it's also possible that 'svn' is a shell alias, or shell
> > function, or wrapper script, that changes the environment before running
> > the 'svn' binary.  This isn't very likely, but you may want to rule it
> > out nonetheless.)
> > 
> > Good luck,
> > 
> > Daniel
> > 
> > Masaru Kitajima wrote on Thu, Feb 09, 2012 at 09:29:27 +0900:
> >> Daniel,
> >> 
> >> Thanks for your kind help.
> >> 
> >> When I typed a command you suggested, server said
> >> "( success ( 2 2 ( ) ( edit-pipeline svndiff1 absent-entries commit-revprops depth log-revprops partial-replay ) ) ) ".
> >> 
> >> And it's same as without -q option.
> >> 
> >> So, the ball is in my court.
> >> 
> >> I'm not sure where my ssh tunnel defined with Mac OS X 10.7.
> >> 
> >> Do you have any idea?
> >> 
> >> Kindest regards,
> >> Masaru
> >> 
> >> On 2012/02/09, at 9:11, Daniel Shahaf wrote:
> >>> Masaru,
> >>> 
> >>> Does 'ssh -q section-9@section-9.sakura.ne.jp svnserve -t' print the
> >>> server greeting (like it does without -q)?
> >>> 
> >>> 1. If it does not print a greeting, you'll have to define:
> >>>   [tunnels]
> >>>   ssh = $SVN_SSH ssh
> >>> (without anything else on the second line) in your system-wide or
> >>> per-user configuration file.  (on Unixy systems: /etc/subversion/config
> >>> (if not changed by the OS packager) or ~/.subversion/config)
> >>> 
> >>> 2. If it does print a greeting, then the ball is in your court.
> >>> You'll have to follow the instructions we've already provided (about
> >>> looking for the 'ssh' tunnel defined wrongly in your environment or in
> >>> your config files).  If those aren't clear, do not hesitate to ask for
> >>> clarification.
> >>> 
> >>> Good luck,
> >>> 
> >>> Daniel
> >>> 
> >>> 
> >>> Masaru Kitajima wrote on Thu, Feb 09, 2012 at 08:27:53 +0900:
> >>>> Rian,
> >>>> 
> >>>> I see. I'm happy to hear that it's not a bug and it's expected behavior.
> >>>> 
> >>>> Still I can't connect to Subversion using svn+ssh protocol. And my team
> >>>> is worrying about it to manage their source files.
> >>>> 
> >>>> Hope to solve this problem soon...
> >>>> 
> >>>> Kindest regards,
> >>>> Masaru
> >>>> 
> >>>> On 2012/02/09, at 8:23, Ryan Schmidt wrote:
> >>>> 
> >>>>> 
> >>>>> On Feb 8, 2012, at 15:41, Alagazam.net Subversion wrote:
> >>>>>> On Feb 7, 2012, at 15:44, Masaru Kitajima wrote:
> >>>>>>> On 2012/02/08, at 6:36, Daniel Shahaf wrote:
> >>>>>>>> What is the output of
> >>>>>>>> 
> >>>>>>>> % ssh section-9@section-9.sakura.ne.jp svnserve -t
> >>>>>>> 
> >>>>>>> It is as below:
> >>>>>>> 
> >>>>>>> ( success ( 2 2 ( ) ( edit-pipeline svndiff1 absent-entries commit-revprops depth log-revprops partial-replay ) ) ) 
> >>>>>>> 
> >>>>>>> and then stops. A prompt is not shown.
> >>>>> 
> >>>>>> 
> >>>>>> This symptom of not getting any prompt back reminds me of a totally
> >>>>>> non-svn related "bug" but a network error I encountered some time ago.
> >>>>> 
> >>>>> Not seeing a prompt in this case is not a bug; it's expected behavior. svnserve is not an interactive program that has a prompt. It's a Subversion server; the above test demonstrated that svnserve is running correctly and is waiting for a Subversion client to connect to it.
> >>>>> 
> >>>>> 
> >>>>> 
> >>>> 
> >>>> <><><><><><><><><><><><><><><><><><><><><><><><><><>
> >>>> Manager / Photographer / Lecturer / Writer
> >>>> Masaru Kitajima
> >>>> 
> >>>> E-mail:tachi.silver@gmail.com
> >>>> blog:http://www.section-9.jp/blog/bluez/
> >>>> 
> >>>> <><><><><><><><><><><><><><><><><><><><><><><><><><>
> >>>> 
> >> 
> >> <><><><><><><><><><><><><><><><><><><><><><><><><><>
> >> Manager / Photographer / Lecturer / Writer
> >> Masaru Kitajima
> >> 
> >> E-mail:tachi.silver@gmail.com
> >> blog:http://www.section-9.jp/blog/bluez/
> >> 
> >> <><><><><><><><><><><><><><><><><><><><><><><><><><>
> >> 
> 
> <><><><><><><><><><><><><><><><><><><><><><><><><><>
> Manager / Photographer / Lecturer / Writer
> Masaru Kitajima
> 
> E-mail:tachi.silver@gmail.com
> blog:http://www.section-9.jp/blog/bluez/
> 
> <><><><><><><><><><><><><><><><><><><><><><><><><><>
> 

Re: Subversion reports error.

Posted by Masaru Kitajima <ta...@gmail.com>.
Daniel,

In Mac OS X, we should use dtrace command. Its command is like
"sudo dtrace -n "syscall::open:entry, syscall::stat:entry, syscall::stat64:entry / execname == \"svn\" / {trace( copyinstr(arg0))}" > dtrace.txt".

I tried this and then tried
"svn info svn+ssh://section-9@section-9.sakura.ne.jp/home/section-9/svn/reps".

Then, I don't know why, dtrace stopped automatically and nothing is recorded
in dtrace.txt.

Do you have any solutions?

Kindest regards,
Masaru

On 2012/02/09, at 9:49, Daniel Shahaf wrote:
> Run svn under a syscall tracer (such as strace, truss, or local
> equivalent), and  you'll see an open(2) call for the config file.  (Ryan
> or someone else may be able to tell you what 'local equivalent' is.)
> 
> I believe you already looked for $SVN_SSH in your environment upthread
> (and found that it was, properly, undefined).
> 
> (Technically, it's also possible that 'svn' is a shell alias, or shell
> function, or wrapper script, that changes the environment before running
> the 'svn' binary.  This isn't very likely, but you may want to rule it
> out nonetheless.)
> 
> Good luck,
> 
> Daniel
> 
> Masaru Kitajima wrote on Thu, Feb 09, 2012 at 09:29:27 +0900:
>> Daniel,
>> 
>> Thanks for your kind help.
>> 
>> When I typed a command you suggested, server said
>> "( success ( 2 2 ( ) ( edit-pipeline svndiff1 absent-entries commit-revprops depth log-revprops partial-replay ) ) ) ".
>> 
>> And it's same as without -q option.
>> 
>> So, the ball is in my court.
>> 
>> I'm not sure where my ssh tunnel defined with Mac OS X 10.7.
>> 
>> Do you have any idea?
>> 
>> Kindest regards,
>> Masaru
>> 
>> On 2012/02/09, at 9:11, Daniel Shahaf wrote:
>>> Masaru,
>>> 
>>> Does 'ssh -q section-9@section-9.sakura.ne.jp svnserve -t' print the
>>> server greeting (like it does without -q)?
>>> 
>>> 1. If it does not print a greeting, you'll have to define:
>>>   [tunnels]
>>>   ssh = $SVN_SSH ssh
>>> (without anything else on the second line) in your system-wide or
>>> per-user configuration file.  (on Unixy systems: /etc/subversion/config
>>> (if not changed by the OS packager) or ~/.subversion/config)
>>> 
>>> 2. If it does print a greeting, then the ball is in your court.
>>> You'll have to follow the instructions we've already provided (about
>>> looking for the 'ssh' tunnel defined wrongly in your environment or in
>>> your config files).  If those aren't clear, do not hesitate to ask for
>>> clarification.
>>> 
>>> Good luck,
>>> 
>>> Daniel
>>> 
>>> 
>>> Masaru Kitajima wrote on Thu, Feb 09, 2012 at 08:27:53 +0900:
>>>> Rian,
>>>> 
>>>> I see. I'm happy to hear that it's not a bug and it's expected behavior.
>>>> 
>>>> Still I can't connect to Subversion using svn+ssh protocol. And my team
>>>> is worrying about it to manage their source files.
>>>> 
>>>> Hope to solve this problem soon...
>>>> 
>>>> Kindest regards,
>>>> Masaru
>>>> 
>>>> On 2012/02/09, at 8:23, Ryan Schmidt wrote:
>>>> 
>>>>> 
>>>>> On Feb 8, 2012, at 15:41, Alagazam.net Subversion wrote:
>>>>>> On Feb 7, 2012, at 15:44, Masaru Kitajima wrote:
>>>>>>> On 2012/02/08, at 6:36, Daniel Shahaf wrote:
>>>>>>>> What is the output of
>>>>>>>> 
>>>>>>>> % ssh section-9@section-9.sakura.ne.jp svnserve -t
>>>>>>> 
>>>>>>> It is as below:
>>>>>>> 
>>>>>>> ( success ( 2 2 ( ) ( edit-pipeline svndiff1 absent-entries commit-revprops depth log-revprops partial-replay ) ) ) 
>>>>>>> 
>>>>>>> and then stops. A prompt is not shown.
>>>>> 
>>>>>> 
>>>>>> This symptom of not getting any prompt back reminds me of a totally
>>>>>> non-svn related "bug" but a network error I encountered some time ago.
>>>>> 
>>>>> Not seeing a prompt in this case is not a bug; it's expected behavior. svnserve is not an interactive program that has a prompt. It's a Subversion server; the above test demonstrated that svnserve is running correctly and is waiting for a Subversion client to connect to it.
>>>>> 
>>>>> 
>>>>> 
>>>> 
>>>> <><><><><><><><><><><><><><><><><><><><><><><><><><>
>>>> Manager / Photographer / Lecturer / Writer
>>>> Masaru Kitajima
>>>> 
>>>> E-mail:tachi.silver@gmail.com
>>>> blog:http://www.section-9.jp/blog/bluez/
>>>> 
>>>> <><><><><><><><><><><><><><><><><><><><><><><><><><>
>>>> 
>> 
>> <><><><><><><><><><><><><><><><><><><><><><><><><><>
>> Manager / Photographer / Lecturer / Writer
>> Masaru Kitajima
>> 
>> E-mail:tachi.silver@gmail.com
>> blog:http://www.section-9.jp/blog/bluez/
>> 
>> <><><><><><><><><><><><><><><><><><><><><><><><><><>
>> 

<><><><><><><><><><><><><><><><><><><><><><><><><><>
Manager / Photographer / Lecturer / Writer
Masaru Kitajima

E-mail:tachi.silver@gmail.com
blog:http://www.section-9.jp/blog/bluez/

<><><><><><><><><><><><><><><><><><><><><><><><><><>


Re: Subversion reports error.

Posted by Daniel Shahaf <da...@elego.de>.
Run svn under a syscall tracer (such as strace, truss, or local
equivalent), and  you'll see an open(2) call for the config file.  (Ryan
or someone else may be able to tell you what 'local equivalent' is.)

I believe you already looked for $SVN_SSH in your environment upthread
(and found that it was, properly, undefined).

(Technically, it's also possible that 'svn' is a shell alias, or shell
function, or wrapper script, that changes the environment before running
the 'svn' binary.  This isn't very likely, but you may want to rule it
out nonetheless.)

Good luck,

Daniel

Masaru Kitajima wrote on Thu, Feb 09, 2012 at 09:29:27 +0900:
> Daniel,
> 
> Thanks for your kind help.
> 
> When I typed a command you suggested, server said
> "( success ( 2 2 ( ) ( edit-pipeline svndiff1 absent-entries commit-revprops depth log-revprops partial-replay ) ) ) ".
> 
> And it's same as without -q option.
> 
> So, the ball is in my court.
> 
> I'm not sure where my ssh tunnel defined with Mac OS X 10.7.
> 
> Do you have any idea?
> 
> Kindest regards,
> Masaru
> 
> On 2012/02/09, at 9:11, Daniel Shahaf wrote:
> > Masaru,
> > 
> > Does 'ssh -q section-9@section-9.sakura.ne.jp svnserve -t' print the
> > server greeting (like it does without -q)?
> > 
> > 1. If it does not print a greeting, you'll have to define:
> >    [tunnels]
> >    ssh = $SVN_SSH ssh
> > (without anything else on the second line) in your system-wide or
> > per-user configuration file.  (on Unixy systems: /etc/subversion/config
> > (if not changed by the OS packager) or ~/.subversion/config)
> > 
> > 2. If it does print a greeting, then the ball is in your court.
> > You'll have to follow the instructions we've already provided (about
> > looking for the 'ssh' tunnel defined wrongly in your environment or in
> > your config files).  If those aren't clear, do not hesitate to ask for
> > clarification.
> > 
> > Good luck,
> > 
> > Daniel
> > 
> > 
> > Masaru Kitajima wrote on Thu, Feb 09, 2012 at 08:27:53 +0900:
> >> Rian,
> >> 
> >> I see. I'm happy to hear that it's not a bug and it's expected behavior.
> >> 
> >> Still I can't connect to Subversion using svn+ssh protocol. And my team
> >> is worrying about it to manage their source files.
> >> 
> >> Hope to solve this problem soon...
> >> 
> >> Kindest regards,
> >> Masaru
> >> 
> >> On 2012/02/09, at 8:23, Ryan Schmidt wrote:
> >> 
> >>> 
> >>> On Feb 8, 2012, at 15:41, Alagazam.net Subversion wrote:
> >>>> On Feb 7, 2012, at 15:44, Masaru Kitajima wrote:
> >>>>> On 2012/02/08, at 6:36, Daniel Shahaf wrote:
> >>>>>> What is the output of
> >>>>>> 
> >>>>>> % ssh section-9@section-9.sakura.ne.jp svnserve -t
> >>>>> 
> >>>>> It is as below:
> >>>>> 
> >>>>> ( success ( 2 2 ( ) ( edit-pipeline svndiff1 absent-entries commit-revprops depth log-revprops partial-replay ) ) ) 
> >>>>> 
> >>>>> and then stops. A prompt is not shown.
> >>> 
> >>>> 
> >>>> This symptom of not getting any prompt back reminds me of a totally
> >>>> non-svn related "bug" but a network error I encountered some time ago.
> >>> 
> >>> Not seeing a prompt in this case is not a bug; it's expected behavior. svnserve is not an interactive program that has a prompt. It's a Subversion server; the above test demonstrated that svnserve is running correctly and is waiting for a Subversion client to connect to it.
> >>> 
> >>> 
> >>> 
> >> 
> >> <><><><><><><><><><><><><><><><><><><><><><><><><><>
> >> Manager / Photographer / Lecturer / Writer
> >> Masaru Kitajima
> >> 
> >> E-mail:tachi.silver@gmail.com
> >> blog:http://www.section-9.jp/blog/bluez/
> >> 
> >> <><><><><><><><><><><><><><><><><><><><><><><><><><>
> >> 
> 
> <><><><><><><><><><><><><><><><><><><><><><><><><><>
> Manager / Photographer / Lecturer / Writer
> Masaru Kitajima
> 
> E-mail:tachi.silver@gmail.com
> blog:http://www.section-9.jp/blog/bluez/
> 
> <><><><><><><><><><><><><><><><><><><><><><><><><><>
> 

Re: Subversion reports error.

Posted by Masaru Kitajima <ta...@gmail.com>.
Daniel,

Thanks for your kind help.

When I typed a command you suggested, server said
"( success ( 2 2 ( ) ( edit-pipeline svndiff1 absent-entries commit-revprops depth log-revprops partial-replay ) ) ) ".

And it's same as without -q option.

So, the ball is in my court.

I'm not sure where my ssh tunnel defined with Mac OS X 10.7.

Do you have any idea?

Kindest regards,
Masaru

On 2012/02/09, at 9:11, Daniel Shahaf wrote:
> Masaru,
> 
> Does 'ssh -q section-9@section-9.sakura.ne.jp svnserve -t' print the
> server greeting (like it does without -q)?
> 
> 1. If it does not print a greeting, you'll have to define:
>    [tunnels]
>    ssh = $SVN_SSH ssh
> (without anything else on the second line) in your system-wide or
> per-user configuration file.  (on Unixy systems: /etc/subversion/config
> (if not changed by the OS packager) or ~/.subversion/config)
> 
> 2. If it does print a greeting, then the ball is in your court.
> You'll have to follow the instructions we've already provided (about
> looking for the 'ssh' tunnel defined wrongly in your environment or in
> your config files).  If those aren't clear, do not hesitate to ask for
> clarification.
> 
> Good luck,
> 
> Daniel
> 
> 
> Masaru Kitajima wrote on Thu, Feb 09, 2012 at 08:27:53 +0900:
>> Rian,
>> 
>> I see. I'm happy to hear that it's not a bug and it's expected behavior.
>> 
>> Still I can't connect to Subversion using svn+ssh protocol. And my team
>> is worrying about it to manage their source files.
>> 
>> Hope to solve this problem soon...
>> 
>> Kindest regards,
>> Masaru
>> 
>> On 2012/02/09, at 8:23, Ryan Schmidt wrote:
>> 
>>> 
>>> On Feb 8, 2012, at 15:41, Alagazam.net Subversion wrote:
>>>> On Feb 7, 2012, at 15:44, Masaru Kitajima wrote:
>>>>> On 2012/02/08, at 6:36, Daniel Shahaf wrote:
>>>>>> What is the output of
>>>>>> 
>>>>>> % ssh section-9@section-9.sakura.ne.jp svnserve -t
>>>>> 
>>>>> It is as below:
>>>>> 
>>>>> ( success ( 2 2 ( ) ( edit-pipeline svndiff1 absent-entries commit-revprops depth log-revprops partial-replay ) ) ) 
>>>>> 
>>>>> and then stops. A prompt is not shown.
>>> 
>>>> 
>>>> This symptom of not getting any prompt back reminds me of a totally
>>>> non-svn related "bug" but a network error I encountered some time ago.
>>> 
>>> Not seeing a prompt in this case is not a bug; it's expected behavior. svnserve is not an interactive program that has a prompt. It's a Subversion server; the above test demonstrated that svnserve is running correctly and is waiting for a Subversion client to connect to it.
>>> 
>>> 
>>> 
>> 
>> <><><><><><><><><><><><><><><><><><><><><><><><><><>
>> Manager / Photographer / Lecturer / Writer
>> Masaru Kitajima
>> 
>> E-mail:tachi.silver@gmail.com
>> blog:http://www.section-9.jp/blog/bluez/
>> 
>> <><><><><><><><><><><><><><><><><><><><><><><><><><>
>> 

<><><><><><><><><><><><><><><><><><><><><><><><><><>
Manager / Photographer / Lecturer / Writer
Masaru Kitajima

E-mail:tachi.silver@gmail.com
blog:http://www.section-9.jp/blog/bluez/

<><><><><><><><><><><><><><><><><><><><><><><><><><>


Re: Subversion reports error.

Posted by Daniel Shahaf <da...@elego.de>.
Masaru,

Does 'ssh -q section-9@section-9.sakura.ne.jp svnserve -t' print the
server greeting (like it does without -q)?

1. If it does not print a greeting, you'll have to define:
    [tunnels]
    ssh = $SVN_SSH ssh
(without anything else on the second line) in your system-wide or
per-user configuration file.  (on Unixy systems: /etc/subversion/config
(if not changed by the OS packager) or ~/.subversion/config)

2. If it does print a greeting, then the ball is in your court.
You'll have to follow the instructions we've already provided (about
looking for the 'ssh' tunnel defined wrongly in your environment or in
your config files).  If those aren't clear, do not hesitate to ask for
clarification.

Good luck,

Daniel


Masaru Kitajima wrote on Thu, Feb 09, 2012 at 08:27:53 +0900:
> Rian,
> 
> I see. I'm happy to hear that it's not a bug and it's expected behavior.
> 
> Still I can't connect to Subversion using svn+ssh protocol. And my team
> is worrying about it to manage their source files.
> 
> Hope to solve this problem soon...
> 
> Kindest regards,
> Masaru
> 
> On 2012/02/09, at 8:23, Ryan Schmidt wrote:
> 
> > 
> > On Feb 8, 2012, at 15:41, Alagazam.net Subversion wrote:
> >> On Feb 7, 2012, at 15:44, Masaru Kitajima wrote:
> >>> On 2012/02/08, at 6:36, Daniel Shahaf wrote:
> >>>> What is the output of
> >>>> 
> >>>> % ssh section-9@section-9.sakura.ne.jp svnserve -t
> >>> 
> >>> It is as below:
> >>> 
> >>> ( success ( 2 2 ( ) ( edit-pipeline svndiff1 absent-entries commit-revprops depth log-revprops partial-replay ) ) ) 
> >>> 
> >>> and then stops. A prompt is not shown.
> > 
> >> 
> >> This symptom of not getting any prompt back reminds me of a totally
> >> non-svn related "bug" but a network error I encountered some time ago.
> > 
> > Not seeing a prompt in this case is not a bug; it's expected behavior. svnserve is not an interactive program that has a prompt. It's a Subversion server; the above test demonstrated that svnserve is running correctly and is waiting for a Subversion client to connect to it.
> > 
> > 
> > 
> 
> <><><><><><><><><><><><><><><><><><><><><><><><><><>
> Manager / Photographer / Lecturer / Writer
> Masaru Kitajima
> 
> E-mail:tachi.silver@gmail.com
> blog:http://www.section-9.jp/blog/bluez/
> 
> <><><><><><><><><><><><><><><><><><><><><><><><><><>
> 

Re: Subversion reports error.

Posted by Masaru Kitajima <ta...@gmail.com>.
To all who helped me.

Thanks a lot for your kind helps.

Finally, I found that it was my environment issue. There was "usr/bin/ssh"
in my "Users/account/.ssh/config" file. It couldn't seen from Mac's Finder
as its name starts with ".".

I used Terminal.app to correct it to "/usr/bin/ssh" and succeeded to connect
to Subversion via Terminal.app.

But, it still failed connecting from Dreamweaver. Even after I changed the
Subversion setup with site in DW, it still tried to search for old server.

I couldn't find the misconfiguration so I create a new folder and copied
visible sources from Finder in order to not to include the files starts
with ".".

And re-create the site setting in DW and it works correctly now.

Thanks again for all your helps. This issue is closed.

Kindest regards,
Masaru

On 2012/02/10, at 8:23, Ryan Schmidt wrote:
> On Feb 9, 2012, at 16:09, Alagazam.net Subversion wrote:
>> On 2012-02-09 00:23, Ryan Schmidt wrote:
>>> On Feb 8, 2012, at 15:41, Alagazam.net Subversion wrote:
>>> 
>>>> On Feb 7, 2012, at 15:44, Masaru Kitajima wrote:
>>>> 
>>>>> On 2012/02/08, at 6:36, Daniel Shahaf wrote:
>>>>> 
>>>>>> What is the output of
>>>>>> 
>>>>>> % ssh 
>>>>>> section-9@section-9.sakura.ne.jp
>>>>>> svnserve -t
>>>>>> 
>>>>> It is as below:
>>>>> 
>>>>> ( success ( 2 2 ( ) ( edit-pipeline svndiff1 absent-entries commit-revprops depth log-revprops partial-replay ) ) ) 
>>>>> 
>>>>> and then stops. A prompt is not shown.
>>>>> 
>>>> This symptom of not getting any prompt back reminds me of a totally
>>>> non-svn related "bug" but a network error I encountered some time ago.
>>>> 
>>> Not seeing a prompt in this case is not a bug; it's expected behavior. svnserve is not an interactive program that has a prompt. It's a Subversion server; the above test demonstrated that svnserve is running correctly and is waiting for a Subversion client to connect to it.
>> 
>> Maybe I was reading the threads wrong [snip]
> 
> Yes; here are the two original messages in question:
> 
> http://mail-archives.apache.org/mod_mbox/subversion-users/201202.mbox/%3c3B642053-4FF0-4BD0-A0DE-7EA55D053666@gmail.com%3e
> 
> http://mail-archives.apache.org/mod_mbox/subversion-users/201202.mbox/%3cE130C27C-FB32-453A-8F8A-830D079EAAD2@gmail.com%3e
> 
> 

<><><><><><><><><><><><><><><><><><><><><><><><><><>
Manager / Photographer / Lecturer / Writer
Masaru Kitajima

E-mail:tachi.silver@gmail.com
blog:http://www.section-9.jp/blog/bluez/

<><><><><><><><><><><><><><><><><><><><><><><><><><>


Re: Subversion reports error.

Posted by Ryan Schmidt <su...@ryandesign.com>.
On Feb 9, 2012, at 16:09, Alagazam.net Subversion wrote:
> On 2012-02-09 00:23, Ryan Schmidt wrote:
>> On Feb 8, 2012, at 15:41, Alagazam.net Subversion wrote:
>> 
>>> On Feb 7, 2012, at 15:44, Masaru Kitajima wrote:
>>> 
>>>> On 2012/02/08, at 6:36, Daniel Shahaf wrote:
>>>> 
>>>>> What is the output of
>>>>> 
>>>>> % ssh 
>>>>> section-9@section-9.sakura.ne.jp
>>>>>  svnserve -t
>>>>> 
>>>> It is as below:
>>>> 
>>>> ( success ( 2 2 ( ) ( edit-pipeline svndiff1 absent-entries commit-revprops depth log-revprops partial-replay ) ) ) 
>>>> 
>>>> and then stops. A prompt is not shown.
>>>> 
>>> This symptom of not getting any prompt back reminds me of a totally
>>> non-svn related "bug" but a network error I encountered some time ago.
>>> 
>> Not seeing a prompt in this case is not a bug; it's expected behavior. svnserve is not an interactive program that has a prompt. It's a Subversion server; the above test demonstrated that svnserve is running correctly and is waiting for a Subversion client to connect to it.
> 
> Maybe I was reading the threads wrong [snip]

Yes; here are the two original messages in question:

http://mail-archives.apache.org/mod_mbox/subversion-users/201202.mbox/%3c3B642053-4FF0-4BD0-A0DE-7EA55D053666@gmail.com%3e

http://mail-archives.apache.org/mod_mbox/subversion-users/201202.mbox/%3cE130C27C-FB32-453A-8F8A-830D079EAAD2@gmail.com%3e



Re: Subversion reports error.

Posted by "Alagazam.net Subversion" <sv...@alagazam.net>.
On 2012-02-09 00:23, Ryan Schmidt wrote:
> On Feb 8, 2012, at 15:41, Alagazam.net Subversion wrote:
>> On Feb 7, 2012, at 15:44, Masaru Kitajima wrote:
>>> On 2012/02/08, at 6:36, Daniel Shahaf wrote:
>>>> What is the output of
>>>>
>>>> % ssh section-9@section-9.sakura.ne.jp svnserve -t
>>> It is as below:
>>>
>>> ( success ( 2 2 ( ) ( edit-pipeline svndiff1 absent-entries commit-revprops depth log-revprops partial-replay ) ) )
>>>
>>> and then stops. A prompt is not shown.
>> This symptom of not getting any prompt back reminds me of a totally
>> non-svn related "bug" but a network error I encountered some time ago.
> Not seeing a prompt in this case is not a bug; it's expected behavior. svnserve is not an interactive program that has a prompt. It's a Subversion server; the above test demonstrated that svnserve is running correctly and is waiting for a Subversion client to connect to it.
>
>
Maybe I was reading the threads wrong but my answer about not getting 
the prompt back was a reply to this part:

    % sshsection-9@section-9.sakura.ne.jp  ls /home/section-9/svn/reps

    README.txt
    conf
    db
    format
    hooks
    locks

    and then stops. A prompt is not shown.

which to me seems like the ssh session is running a normal shell ls command.

About the MTU value I'm really don't know as it was in the VPN routers 
which I don't manage, but it's normally 1500 so I guess the change was 
to 1490 or something to account for the VPN headers.

/David


Re: Subversion reports error.

Posted by Masaru Kitajima <ta...@gmail.com>.
Rian,

I see. I'm happy to hear that it's not a bug and it's expected behavior.

Still I can't connect to Subversion using svn+ssh protocol. And my team
is worrying about it to manage their source files.

Hope to solve this problem soon...

Kindest regards,
Masaru

On 2012/02/09, at 8:23, Ryan Schmidt wrote:

> 
> On Feb 8, 2012, at 15:41, Alagazam.net Subversion wrote:
>> On Feb 7, 2012, at 15:44, Masaru Kitajima wrote:
>>> On 2012/02/08, at 6:36, Daniel Shahaf wrote:
>>>> What is the output of
>>>> 
>>>> % ssh section-9@section-9.sakura.ne.jp svnserve -t
>>> 
>>> It is as below:
>>> 
>>> ( success ( 2 2 ( ) ( edit-pipeline svndiff1 absent-entries commit-revprops depth log-revprops partial-replay ) ) ) 
>>> 
>>> and then stops. A prompt is not shown.
> 
>> 
>> This symptom of not getting any prompt back reminds me of a totally
>> non-svn related "bug" but a network error I encountered some time ago.
> 
> Not seeing a prompt in this case is not a bug; it's expected behavior. svnserve is not an interactive program that has a prompt. It's a Subversion server; the above test demonstrated that svnserve is running correctly and is waiting for a Subversion client to connect to it.
> 
> 
> 

<><><><><><><><><><><><><><><><><><><><><><><><><><>
Manager / Photographer / Lecturer / Writer
Masaru Kitajima

E-mail:tachi.silver@gmail.com
blog:http://www.section-9.jp/blog/bluez/

<><><><><><><><><><><><><><><><><><><><><><><><><><>


Re: Subversion reports error.

Posted by Ryan Schmidt <su...@ryandesign.com>.
On Feb 8, 2012, at 15:41, Alagazam.net Subversion wrote:
> On Feb 7, 2012, at 15:44, Masaru Kitajima wrote:
>> On 2012/02/08, at 6:36, Daniel Shahaf wrote:
>>> What is the output of
>>> 
>>> % ssh section-9@section-9.sakura.ne.jp svnserve -t
>> 
>> It is as below:
>> 
>> ( success ( 2 2 ( ) ( edit-pipeline svndiff1 absent-entries commit-revprops depth log-revprops partial-replay ) ) ) 
>> 
>> and then stops. A prompt is not shown.

> 
> This symptom of not getting any prompt back reminds me of a totally
> non-svn related "bug" but a network error I encountered some time ago.

Not seeing a prompt in this case is not a bug; it's expected behavior. svnserve is not an interactive program that has a prompt. It's a Subversion server; the above test demonstrated that svnserve is running correctly and is waiting for a Subversion client to connect to it.




Re: Subversion reports error.

Posted by "Alagazam.net Subversion" <sv...@alagazam.net>.
>>>>> % ssh section-9@section-9.sakura.ne.jp ls /home/section-9/svn/reps
>>>> README.txt
>>>> conf
>>>> db
>>>> format
>>>> hooks
>>>> locks
>>>>
>>>>>> and then stops. A prompt is not shown.
>>>>>>
>>>>>> Kindest regards,
>>>>>> Masaru
>>>>>>
This symptom of not getting any prompt back reminds me of a totally
non-svn related "bug" but a network error I encountered some time ago.
When running a ssh session to a remote computer via en VPN tunnel
commands on the remote computer returning a lot of data halted the
session after just a couple of lines.
i.e. "ls -l" didn't work but "ls" did for the same directory.

The problem was that the router where the tunnel ended (or started) on
my side had been replaced an the MTU had changed, so network packets to
large didn't come through the tunnel..
When the network people corrected the MTU everything worked again.

Don't know if that's your problem but I'm telling the story so you can
investigate this option.

/David a.k.a. Alagazam



Re: Subversion reports error.

Posted by Masaru Kitajima <ta...@gmail.com>.
Hi, Daniel.

Sorry to say that I'm not familiar with UNIX command. So I can't
understand what to do next.

And I tried TortoiseSVN on my BOOTCAMP partition which runs Windows 7.
TortoiseSVN says "can't create tunnel". So I guess it is not my client
issue.


On 2012/02/09, at 3:53, Daniel Shahaf wrote:
> If it works with --config-option and not without it then either the
> 'config' file in your system provides a bogus value, or the envvar
> SVN_SSH is set.
> 
> strace or truss should find the bogus config file for you, if all else
> fails.
> 
> Masaru Kitajima wrote on Thu, Feb 09, 2012 at 03:41:20 +0900:
>> Hi, Daniel
>> 
>> I posted e-mail below yesterday morning.
>> 
>> Could you find something to solve my problem?
>> 
>> Thanks in advance.
>> 
>> Kindest regards,
>> Masaru
>> 
>> On 2012/02/08, at 7:18, Masaru Kitajima wrote:
>>> Hi, Daniel.
>>> 
>>> Thank you for your help.
>>> 
>>> On 2012/02/08, at 7:00, Daniel Shahaf wrote:
>>>> Masaru Kitajima wrote on Wed, Feb 08, 2012 at 06:44:33 +0900:
>>>>> Hi, Daniel
>>>>> 
>>>>> On 2012/02/08, at 6:36, Daniel Shahaf wrote:
>>>>>> What is the output of
>>>>>> 
>>>>>> % ssh section-9@section-9.sakura.ne.jp svnserve -t
>>>>> 
>>>>> It is as below:
>>>>> 
>>>>> ( success ( 2 2 ( ) ( edit-pipeline svndiff1 absent-entries commit-revprops depth log-revprops partial-replay ) ) ) 
>>>>> 
>>>> 
>>>> That's expected.  It confirms that the problem is client-side --- that
>>>> somehow your 'svn' can't execute 'ssh'.
>>> 
>>> I see.
>>> 
>>>> How about
>>>> 
>>>> % svn info --config-option=config:tunnels:ssh=ssh svn+ssh://section-9@section-9.sakura.ne.jp/home/section-9/svn/reps
>>> 
>>> Path: reps
>>> URL: svn+ssh://section-9@section-9.sakura.ne.jp/home/section-9/svn/reps
>>> Repository Root: svn+ssh://section-9@section-9.sakura.ne.jp/home/section-9/svn/reps
>>> Repository UUID: 58057560-1dae-0410-8c1a-ac626003657b
>>> Revision: 919
>>> Node Kind: directory
>>> Last Changed Author: kitajima
>>> Last Changed Rev: 919
>>> Last Changed Date: 2012-02-07 11:54:42 +0900 (火, 07  2 2012)
>>> 
>>>> % ssh section-9@section-9.sakura.ne.jp ls /home/section-9/svn/reps
>>> 
>>> README.txt
>>> conf
>>> db
>>> format
>>> hooks
>>> locks
>>> 
>>>>> and then stops. A prompt is not shown.
>>>>> 
>>>>> Kindest regards,
>>>>> Masaru
>>>>> 
>>>>>> 
>>>>>> ?
>>>>>> 
>>>>>> Masaru Kitajima wrote on Wed, Feb 08, 2012 at 06:32:18 +0900:
>>>>>>> On 2012/02/08, at 6:24, Stefan Sperling wrote:
>>>>>>>> On Wed, Feb 08, 2012 at 06:21:27AM +0900, Masaru Kitajima wrote:
>>>>>>>>> I typed "echo SVN_SSH" then server says "undefined variable". And nothing found in the files you mentioned.
>>>>>>>> 
>>>>>>>> To me it looks like the problem is happening on the client
>>>>>>>> instead of on the server.
>>>>>>>> 
>>>>>>>> If you cannot find anything wrong in your ~/.subversion/config file,
>>>>>>>> maybe you have a bad "ssh =" option in /etc/subversion/config?
>>>>>>> 
>>>>>>> Thanks again!
>>>>>>> 
>>>>>>> But, I couldn't find /etc/subversion/config both on the server and the client.
>>>>>>> So, this may not be a problem.
>>>> 
>>>> Try /usr/local/etc/subversion/config too.
>>> 
>>> There's no etc directory in /usr/local in my environment.
>>> (I use MacBook Pro running Mac OS X 10.7.3.)
>>> 
>>>>>>> <><><><><><><><><><><><><><><><><><><><><><><><><><>
>>>>>>> Manager / Photographer / Lecturer / Writer
>>>>>>> Masaru Kitajima
>>>>>>> 
>>>>>>> E-mail:tachi.silver@gmail.com
>>>>>>> blog:http://www.section-9.jp/blog/bluez/
>>>>>>> 
>>>>>>> <><><><><><><><><><><><><><><><><><><><><><><><><><>
>>>>>>> 
>>>>> 
>>>>> <><><><><><><><><><><><><><><><><><><><><><><><><><>
>>>>> Manager / Photographer / Lecturer / Writer
>>>>> Masaru Kitajima
>>>>> 
>>>>> E-mail:tachi.silver@gmail.com
>>>>> blog:http://www.section-9.jp/blog/bluez/
>>>>> 
>>>>> <><><><><><><><><><><><><><><><><><><><><><><><><><>
>>> 
>>> Kindest regards,
>>> Masaru
>>> 
>>> <><><><><><><><><><><><><><><><><><><><><><><><><><>
>>> Manager / Photographer / Lecturer / Writer
>>> Masaru Kitajima
>>> 
>>> E-mail:tachi.silver@gmail.com
>>> blog:http://www.section-9.jp/blog/bluez/
>>> 
>>> <><><><><><><><><><><><><><><><><><><><><><><><><><>
>>> 
>> 
>> <><><><><><><><><><><><><><><><><><><><><><><><><><>
>> Manager / Photographer / Lecturer / Writer
>> Masaru Kitajima
>> 
>> E-mail:tachi.silver@gmail.com
>> blog:http://www.section-9.jp/blog/bluez/
>> 
>> <><><><><><><><><><><><><><><><><><><><><><><><><><>
>> 

<><><><><><><><><><><><><><><><><><><><><><><><><><>
Manager / Photographer / Lecturer / Writer
Masaru Kitajima

E-mail:tachi.silver@gmail.com
blog:http://www.section-9.jp/blog/bluez/

<><><><><><><><><><><><><><><><><><><><><><><><><><>


Re: Subversion reports error.

Posted by Daniel Shahaf <d....@daniel.shahaf.name>.
If it works with --config-option and not without it then either the
'config' file in your system provides a bogus value, or the envvar
SVN_SSH is set.

strace or truss should find the bogus config file for you, if all else
fails.

Masaru Kitajima wrote on Thu, Feb 09, 2012 at 03:41:20 +0900:
> Hi, Daniel
> 
> I posted e-mail below yesterday morning.
> 
> Could you find something to solve my problem?
> 
> Thanks in advance.
> 
> Kindest regards,
> Masaru
> 
> On 2012/02/08, at 7:18, Masaru Kitajima wrote:
> > Hi, Daniel.
> > 
> > Thank you for your help.
> > 
> > On 2012/02/08, at 7:00, Daniel Shahaf wrote:
> >> Masaru Kitajima wrote on Wed, Feb 08, 2012 at 06:44:33 +0900:
> >>> Hi, Daniel
> >>> 
> >>> On 2012/02/08, at 6:36, Daniel Shahaf wrote:
> >>>> What is the output of
> >>>> 
> >>>> % ssh section-9@section-9.sakura.ne.jp svnserve -t
> >>> 
> >>> It is as below:
> >>> 
> >>> ( success ( 2 2 ( ) ( edit-pipeline svndiff1 absent-entries commit-revprops depth log-revprops partial-replay ) ) ) 
> >>> 
> >> 
> >> That's expected.  It confirms that the problem is client-side --- that
> >> somehow your 'svn' can't execute 'ssh'.
> > 
> > I see.
> > 
> >> How about
> >> 
> >> % svn info --config-option=config:tunnels:ssh=ssh svn+ssh://section-9@section-9.sakura.ne.jp/home/section-9/svn/reps
> > 
> > Path: reps
> > URL: svn+ssh://section-9@section-9.sakura.ne.jp/home/section-9/svn/reps
> > Repository Root: svn+ssh://section-9@section-9.sakura.ne.jp/home/section-9/svn/reps
> > Repository UUID: 58057560-1dae-0410-8c1a-ac626003657b
> > Revision: 919
> > Node Kind: directory
> > Last Changed Author: kitajima
> > Last Changed Rev: 919
> > Last Changed Date: 2012-02-07 11:54:42 +0900 (火, 07  2 2012)
> > 
> >> % ssh section-9@section-9.sakura.ne.jp ls /home/section-9/svn/reps
> > 
> > README.txt
> > conf
> > db
> > format
> > hooks
> > locks
> > 
> >>> and then stops. A prompt is not shown.
> >>> 
> >>> Kindest regards,
> >>> Masaru
> >>> 
> >>>> 
> >>>> ?
> >>>> 
> >>>> Masaru Kitajima wrote on Wed, Feb 08, 2012 at 06:32:18 +0900:
> >>>>> On 2012/02/08, at 6:24, Stefan Sperling wrote:
> >>>>>> On Wed, Feb 08, 2012 at 06:21:27AM +0900, Masaru Kitajima wrote:
> >>>>>>> I typed "echo SVN_SSH" then server says "undefined variable". And nothing found in the files you mentioned.
> >>>>>> 
> >>>>>> To me it looks like the problem is happening on the client
> >>>>>> instead of on the server.
> >>>>>> 
> >>>>>> If you cannot find anything wrong in your ~/.subversion/config file,
> >>>>>> maybe you have a bad "ssh =" option in /etc/subversion/config?
> >>>>> 
> >>>>> Thanks again!
> >>>>> 
> >>>>> But, I couldn't find /etc/subversion/config both on the server and the client.
> >>>>> So, this may not be a problem.
> >> 
> >> Try /usr/local/etc/subversion/config too.
> > 
> > There's no etc directory in /usr/local in my environment.
> > (I use MacBook Pro running Mac OS X 10.7.3.)
> > 
> >>>>> <><><><><><><><><><><><><><><><><><><><><><><><><><>
> >>>>> Manager / Photographer / Lecturer / Writer
> >>>>> Masaru Kitajima
> >>>>> 
> >>>>> E-mail:tachi.silver@gmail.com
> >>>>> blog:http://www.section-9.jp/blog/bluez/
> >>>>> 
> >>>>> <><><><><><><><><><><><><><><><><><><><><><><><><><>
> >>>>> 
> >>> 
> >>> <><><><><><><><><><><><><><><><><><><><><><><><><><>
> >>> Manager / Photographer / Lecturer / Writer
> >>> Masaru Kitajima
> >>> 
> >>> E-mail:tachi.silver@gmail.com
> >>> blog:http://www.section-9.jp/blog/bluez/
> >>> 
> >>> <><><><><><><><><><><><><><><><><><><><><><><><><><>
> > 
> > Kindest regards,
> > Masaru
> > 
> > <><><><><><><><><><><><><><><><><><><><><><><><><><>
> > Manager / Photographer / Lecturer / Writer
> > Masaru Kitajima
> > 
> > E-mail:tachi.silver@gmail.com
> > blog:http://www.section-9.jp/blog/bluez/
> > 
> > <><><><><><><><><><><><><><><><><><><><><><><><><><>
> > 
> 
> <><><><><><><><><><><><><><><><><><><><><><><><><><>
> Manager / Photographer / Lecturer / Writer
> Masaru Kitajima
> 
> E-mail:tachi.silver@gmail.com
> blog:http://www.section-9.jp/blog/bluez/
> 
> <><><><><><><><><><><><><><><><><><><><><><><><><><>
> 

Re: Subversion reports error.

Posted by Masaru Kitajima <ta...@gmail.com>.
Hi, Daniel

I posted e-mail below yesterday morning.

Could you find something to solve my problem?

Thanks in advance.

Kindest regards,
Masaru

On 2012/02/08, at 7:18, Masaru Kitajima wrote:
> Hi, Daniel.
> 
> Thank you for your help.
> 
> On 2012/02/08, at 7:00, Daniel Shahaf wrote:
>> Masaru Kitajima wrote on Wed, Feb 08, 2012 at 06:44:33 +0900:
>>> Hi, Daniel
>>> 
>>> On 2012/02/08, at 6:36, Daniel Shahaf wrote:
>>>> What is the output of
>>>> 
>>>> % ssh section-9@section-9.sakura.ne.jp svnserve -t
>>> 
>>> It is as below:
>>> 
>>> ( success ( 2 2 ( ) ( edit-pipeline svndiff1 absent-entries commit-revprops depth log-revprops partial-replay ) ) ) 
>>> 
>> 
>> That's expected.  It confirms that the problem is client-side --- that
>> somehow your 'svn' can't execute 'ssh'.
> 
> I see.
> 
>> How about
>> 
>> % svn info --config-option=config:tunnels:ssh=ssh svn+ssh://section-9@section-9.sakura.ne.jp/home/section-9/svn/reps
> 
> Path: reps
> URL: svn+ssh://section-9@section-9.sakura.ne.jp/home/section-9/svn/reps
> Repository Root: svn+ssh://section-9@section-9.sakura.ne.jp/home/section-9/svn/reps
> Repository UUID: 58057560-1dae-0410-8c1a-ac626003657b
> Revision: 919
> Node Kind: directory
> Last Changed Author: kitajima
> Last Changed Rev: 919
> Last Changed Date: 2012-02-07 11:54:42 +0900 (火, 07  2 2012)
> 
>> % ssh section-9@section-9.sakura.ne.jp ls /home/section-9/svn/reps
> 
> README.txt
> conf
> db
> format
> hooks
> locks
> 
>>> and then stops. A prompt is not shown.
>>> 
>>> Kindest regards,
>>> Masaru
>>> 
>>>> 
>>>> ?
>>>> 
>>>> Masaru Kitajima wrote on Wed, Feb 08, 2012 at 06:32:18 +0900:
>>>>> On 2012/02/08, at 6:24, Stefan Sperling wrote:
>>>>>> On Wed, Feb 08, 2012 at 06:21:27AM +0900, Masaru Kitajima wrote:
>>>>>>> I typed "echo SVN_SSH" then server says "undefined variable". And nothing found in the files you mentioned.
>>>>>> 
>>>>>> To me it looks like the problem is happening on the client
>>>>>> instead of on the server.
>>>>>> 
>>>>>> If you cannot find anything wrong in your ~/.subversion/config file,
>>>>>> maybe you have a bad "ssh =" option in /etc/subversion/config?
>>>>> 
>>>>> Thanks again!
>>>>> 
>>>>> But, I couldn't find /etc/subversion/config both on the server and the client.
>>>>> So, this may not be a problem.
>> 
>> Try /usr/local/etc/subversion/config too.
> 
> There's no etc directory in /usr/local in my environment.
> (I use MacBook Pro running Mac OS X 10.7.3.)
> 
>>>>> <><><><><><><><><><><><><><><><><><><><><><><><><><>
>>>>> Manager / Photographer / Lecturer / Writer
>>>>> Masaru Kitajima
>>>>> 
>>>>> E-mail:tachi.silver@gmail.com
>>>>> blog:http://www.section-9.jp/blog/bluez/
>>>>> 
>>>>> <><><><><><><><><><><><><><><><><><><><><><><><><><>
>>>>> 
>>> 
>>> <><><><><><><><><><><><><><><><><><><><><><><><><><>
>>> Manager / Photographer / Lecturer / Writer
>>> Masaru Kitajima
>>> 
>>> E-mail:tachi.silver@gmail.com
>>> blog:http://www.section-9.jp/blog/bluez/
>>> 
>>> <><><><><><><><><><><><><><><><><><><><><><><><><><>
> 
> Kindest regards,
> Masaru
> 
> <><><><><><><><><><><><><><><><><><><><><><><><><><>
> Manager / Photographer / Lecturer / Writer
> Masaru Kitajima
> 
> E-mail:tachi.silver@gmail.com
> blog:http://www.section-9.jp/blog/bluez/
> 
> <><><><><><><><><><><><><><><><><><><><><><><><><><>
> 

<><><><><><><><><><><><><><><><><><><><><><><><><><>
Manager / Photographer / Lecturer / Writer
Masaru Kitajima

E-mail:tachi.silver@gmail.com
blog:http://www.section-9.jp/blog/bluez/

<><><><><><><><><><><><><><><><><><><><><><><><><><>


Re: Subversion reports error.

Posted by Masaru Kitajima <ta...@gmail.com>.
Hi, Daniel.

Thank you for your help.

On 2012/02/08, at 7:00, Daniel Shahaf wrote:
> Masaru Kitajima wrote on Wed, Feb 08, 2012 at 06:44:33 +0900:
>> Hi, Daniel
>> 
>> On 2012/02/08, at 6:36, Daniel Shahaf wrote:
>>> What is the output of
>>> 
>>> % ssh section-9@section-9.sakura.ne.jp svnserve -t
>> 
>> It is as below:
>> 
>> ( success ( 2 2 ( ) ( edit-pipeline svndiff1 absent-entries commit-revprops depth log-revprops partial-replay ) ) ) 
>> 
> 
> That's expected.  It confirms that the problem is client-side --- that
> somehow your 'svn' can't execute 'ssh'.

I see.

> How about
> 
> % svn info --config-option=config:tunnels:ssh=ssh svn+ssh://section-9@section-9.sakura.ne.jp/home/section-9/svn/reps

Path: reps
URL: svn+ssh://section-9@section-9.sakura.ne.jp/home/section-9/svn/reps
Repository Root: svn+ssh://section-9@section-9.sakura.ne.jp/home/section-9/svn/reps
Repository UUID: 58057560-1dae-0410-8c1a-ac626003657b
Revision: 919
Node Kind: directory
Last Changed Author: kitajima
Last Changed Rev: 919
Last Changed Date: 2012-02-07 11:54:42 +0900 (火, 07  2 2012)

> % ssh section-9@section-9.sakura.ne.jp ls /home/section-9/svn/reps

README.txt
conf
db
format
hooks
locks

>> and then stops. A prompt is not shown.
>> 
>> Kindest regards,
>> Masaru
>> 
>>> 
>>> ?
>>> 
>>> Masaru Kitajima wrote on Wed, Feb 08, 2012 at 06:32:18 +0900:
>>>> On 2012/02/08, at 6:24, Stefan Sperling wrote:
>>>>> On Wed, Feb 08, 2012 at 06:21:27AM +0900, Masaru Kitajima wrote:
>>>>>> I typed "echo SVN_SSH" then server says "undefined variable". And nothing found in the files you mentioned.
>>>>> 
>>>>> To me it looks like the problem is happening on the client
>>>>> instead of on the server.
>>>>> 
>>>>> If you cannot find anything wrong in your ~/.subversion/config file,
>>>>> maybe you have a bad "ssh =" option in /etc/subversion/config?
>>>> 
>>>> Thanks again!
>>>> 
>>>> But, I couldn't find /etc/subversion/config both on the server and the client.
>>>> So, this may not be a problem.
> 
> Try /usr/local/etc/subversion/config too.

There's no etc directory in /usr/local in my environment.
(I use MacBook Pro running Mac OS X 10.7.3.)

>>>> <><><><><><><><><><><><><><><><><><><><><><><><><><>
>>>> Manager / Photographer / Lecturer / Writer
>>>> Masaru Kitajima
>>>> 
>>>> E-mail:tachi.silver@gmail.com
>>>> blog:http://www.section-9.jp/blog/bluez/
>>>> 
>>>> <><><><><><><><><><><><><><><><><><><><><><><><><><>
>>>> 
>> 
>> <><><><><><><><><><><><><><><><><><><><><><><><><><>
>> Manager / Photographer / Lecturer / Writer
>> Masaru Kitajima
>> 
>> E-mail:tachi.silver@gmail.com
>> blog:http://www.section-9.jp/blog/bluez/
>> 
>> <><><><><><><><><><><><><><><><><><><><><><><><><><>

Kindest regards,
Masaru

<><><><><><><><><><><><><><><><><><><><><><><><><><>
Manager / Photographer / Lecturer / Writer
Masaru Kitajima

E-mail:tachi.silver@gmail.com
blog:http://www.section-9.jp/blog/bluez/

<><><><><><><><><><><><><><><><><><><><><><><><><><>


Re: Subversion reports error.

Posted by Daniel Shahaf <d....@daniel.shahaf.name>.
Masaru Kitajima wrote on Wed, Feb 08, 2012 at 06:44:33 +0900:
> Hi, Daniel
> 
> On 2012/02/08, at 6:36, Daniel Shahaf wrote:
> > What is the output of
> > 
> > % ssh section-9@section-9.sakura.ne.jp svnserve -t
> 
> It is as below:
> 
> ( success ( 2 2 ( ) ( edit-pipeline svndiff1 absent-entries commit-revprops depth log-revprops partial-replay ) ) ) 
> 

That's expected.  It confirms that the problem is client-side --- that
somehow your 'svn' can't execute 'ssh'.

How about

% svn info --config-option=config:tunnels:ssh=ssh svn+ssh://section-9@section-9.sakura.ne.jp/home/section-9/svn/reps

And

% ssh section-9@section-9.sakura.ne.jp ls /home/section-9/svn/reps

?

(more below)

> and then stops. A prompt is not shown.
> 
> Kindest regards,
> Masaru
> 
> > 
> > ?
> > 
> > Masaru Kitajima wrote on Wed, Feb 08, 2012 at 06:32:18 +0900:
> >> On 2012/02/08, at 6:24, Stefan Sperling wrote:
> >>> On Wed, Feb 08, 2012 at 06:21:27AM +0900, Masaru Kitajima wrote:
> >>>> I typed "echo SVN_SSH" then server says "undefined variable". And nothing found in the files you mentioned.
> >>> 
> >>> To me it looks like the problem is happening on the client
> >>> instead of on the server.
> >>> 
> >>> If you cannot find anything wrong in your ~/.subversion/config file,
> >>> maybe you have a bad "ssh =" option in /etc/subversion/config?
> >> 
> >> Thanks again!
> >> 
> >> But, I couldn't find /etc/subversion/config both on the server and the client.
> >> So, this may not be a problem.

Try /usr/local/etc/subversion/config too.

> >> 
> >> <><><><><><><><><><><><><><><><><><><><><><><><><><>
> >> Manager / Photographer / Lecturer / Writer
> >> Masaru Kitajima
> >> 
> >> E-mail:tachi.silver@gmail.com
> >> blog:http://www.section-9.jp/blog/bluez/
> >> 
> >> <><><><><><><><><><><><><><><><><><><><><><><><><><>
> >> 
> 
> <><><><><><><><><><><><><><><><><><><><><><><><><><>
> Manager / Photographer / Lecturer / Writer
> Masaru Kitajima
> 
> E-mail:tachi.silver@gmail.com
> blog:http://www.section-9.jp/blog/bluez/
> 
> <><><><><><><><><><><><><><><><><><><><><><><><><><>
> 

Re: Subversion reports error.

Posted by Masaru Kitajima <ta...@gmail.com>.
Hi, Daniel

On 2012/02/08, at 6:36, Daniel Shahaf wrote:
> What is the output of
> 
> % ssh section-9@section-9.sakura.ne.jp svnserve -t

It is as below:

( success ( 2 2 ( ) ( edit-pipeline svndiff1 absent-entries commit-revprops depth log-revprops partial-replay ) ) ) 

and then stops. A prompt is not shown.

Kindest regards,
Masaru

> 
> ?
> 
> Masaru Kitajima wrote on Wed, Feb 08, 2012 at 06:32:18 +0900:
>> On 2012/02/08, at 6:24, Stefan Sperling wrote:
>>> On Wed, Feb 08, 2012 at 06:21:27AM +0900, Masaru Kitajima wrote:
>>>> I typed "echo SVN_SSH" then server says "undefined variable". And nothing found in the files you mentioned.
>>> 
>>> To me it looks like the problem is happening on the client
>>> instead of on the server.
>>> 
>>> If you cannot find anything wrong in your ~/.subversion/config file,
>>> maybe you have a bad "ssh =" option in /etc/subversion/config?
>> 
>> Thanks again!
>> 
>> But, I couldn't find /etc/subversion/config both on the server and the client.
>> So, this may not be a problem.
>> 
>> <><><><><><><><><><><><><><><><><><><><><><><><><><>
>> Manager / Photographer / Lecturer / Writer
>> Masaru Kitajima
>> 
>> E-mail:tachi.silver@gmail.com
>> blog:http://www.section-9.jp/blog/bluez/
>> 
>> <><><><><><><><><><><><><><><><><><><><><><><><><><>
>> 

<><><><><><><><><><><><><><><><><><><><><><><><><><>
Manager / Photographer / Lecturer / Writer
Masaru Kitajima

E-mail:tachi.silver@gmail.com
blog:http://www.section-9.jp/blog/bluez/

<><><><><><><><><><><><><><><><><><><><><><><><><><>


Re: Subversion reports error.

Posted by Daniel Shahaf <d....@daniel.shahaf.name>.
What is the output of

% ssh section-9@section-9.sakura.ne.jp svnserve -t

?

Masaru Kitajima wrote on Wed, Feb 08, 2012 at 06:32:18 +0900:
> On 2012/02/08, at 6:24, Stefan Sperling wrote:
> > On Wed, Feb 08, 2012 at 06:21:27AM +0900, Masaru Kitajima wrote:
> >> I typed "echo SVN_SSH" then server says "undefined variable". And nothing found in the files you mentioned.
> > 
> > To me it looks like the problem is happening on the client
> > instead of on the server.
> > 
> > If you cannot find anything wrong in your ~/.subversion/config file,
> > maybe you have a bad "ssh =" option in /etc/subversion/config?
> 
> Thanks again!
> 
> But, I couldn't find /etc/subversion/config both on the server and the client.
> So, this may not be a problem.
> 
> <><><><><><><><><><><><><><><><><><><><><><><><><><>
> Manager / Photographer / Lecturer / Writer
> Masaru Kitajima
> 
> E-mail:tachi.silver@gmail.com
> blog:http://www.section-9.jp/blog/bluez/
> 
> <><><><><><><><><><><><><><><><><><><><><><><><><><>
> 

Re: Subversion reports error.

Posted by Masaru Kitajima <ta...@gmail.com>.
On 2012/02/08, at 6:24, Stefan Sperling wrote:
> On Wed, Feb 08, 2012 at 06:21:27AM +0900, Masaru Kitajima wrote:
>> I typed "echo SVN_SSH" then server says "undefined variable". And nothing found in the files you mentioned.
> 
> To me it looks like the problem is happening on the client
> instead of on the server.
> 
> If you cannot find anything wrong in your ~/.subversion/config file,
> maybe you have a bad "ssh =" option in /etc/subversion/config?

Thanks again!

But, I couldn't find /etc/subversion/config both on the server and the client.
So, this may not be a problem.

<><><><><><><><><><><><><><><><><><><><><><><><><><>
Manager / Photographer / Lecturer / Writer
Masaru Kitajima

E-mail:tachi.silver@gmail.com
blog:http://www.section-9.jp/blog/bluez/

<><><><><><><><><><><><><><><><><><><><><><><><><><>


Re: Subversion reports error.

Posted by Stefan Sperling <st...@elego.de>.
On Wed, Feb 08, 2012 at 06:21:27AM +0900, Masaru Kitajima wrote:
> I typed "echo SVN_SSH" then server says "undefined variable". And nothing found in the files you mentioned.

To me it looks like the problem is happening on the client
instead of on the server.

If you cannot find anything wrong in your ~/.subversion/config file,
maybe you have a bad "ssh =" option in /etc/subversion/config?

Re: Subversion reports error.

Posted by Masaru Kitajima <ta...@gmail.com>.
Hi, all

Ryan, thanks for telling me to Reply All to make our conversation stays on the
mailing list.

On 2012/02/08, at 6:08, Ryan Schmidt wrote:
> You should Reply All so that our conversation stays on the mailing list so others can benefit from it.
> 
> On Feb 7, 2012, at 14:48, Masaru Kitajima wrote:
> 
>> Hi Ryan,
>> 
>> Thank you for replying to me.
>> 
>> Yes, when I type "which ssh", the server tells me"/usr/bin/ssh".
>> 
>> I installed Subversion in order I mention below.
>> %mkdir -p $HOME/usr/local
>> %mkdir -p $HOME/src/subversion
>> %cd $HOME/src/subversion
>> %wget http://subversion.tigris.org/downloads/subversion-1.6.15.tar.gz
>> %wget http://subversion.tigris.org/downloads/subversion-deps-1.6.15.tar.gz
>> %tar xzf subversion-1.6.15.tar.gz
>> %tar xzf subversion-deps-1.6.15.tar.gz
>> %cd subversion-1.6.15
>> %./configure --prefix=$HOME/usr/local
>> %gmake prefix=$HOME/usr/local
>> %gmake prefix=$HOME/usr/local install
>> %mkdir $HOME/svn
>> %cd $HOME/svn
>> %svnadmin create reps
>> 
>> /usr/bin_ssh exists and works. So, I need to rebuild Subversion, I understand.
>> But how can I tell it the correct ssh path?
> 
> I'm not sure, I just assumed that, since the error message said "usr/bin/ssh", which is not a valid path, instead of "/usr/bin/ssh", that something must be telling Subversion to use that wrong path. Do you perhaps have an environment variable set (such as SVN_SSH) that mentions that path? Or something in your .profile, .bash_profile, .bashrc, etc.?

I typed "echo SVN_SSH" then server says "undefined variable". And nothing found in the files you mentioned.

> P.S: If you're building from source, why use an old version? If you require the 1.6.x branch for some reason, then 1.6.17 is the latest version of that branch, but 1.7.2 is the latest stable version, so I recommend you use that instead.

Thanks a lot.

Kindest regards,
Masaru

<><><><><><><><><><><><><><><><><><><><><><><><><><>
Manager / Photographer / Lecturer / Writer
Masaru Kitajima

E-mail:tachi.silver@gmail.com
blog:http://www.section-9.jp/blog/bluez/

<><><><><><><><><><><><><><><><><><><><><><><><><><>


Re: Subversion reports error.

Posted by Ryan Schmidt <su...@ryandesign.com>.
You should Reply All so that our conversation stays on the mailing list so others can benefit from it.

On Feb 7, 2012, at 14:48, Masaru Kitajima wrote:

> Hi Ryan,
> 
> Thank you for replying to me.
> 
> Yes, when I type "which ssh", the server tells me"/usr/bin/ssh".
> 
> I installed Subversion in order I mention below.
> %mkdir -p $HOME/usr/local
> %mkdir -p $HOME/src/subversion
> %cd $HOME/src/subversion
> %wget http://subversion.tigris.org/downloads/subversion-1.6.15.tar.gz
> %wget http://subversion.tigris.org/downloads/subversion-deps-1.6.15.tar.gz
> %tar xzf subversion-1.6.15.tar.gz
> %tar xzf subversion-deps-1.6.15.tar.gz
> %cd subversion-1.6.15
> %./configure --prefix=$HOME/usr/local
> %gmake prefix=$HOME/usr/local
> %gmake prefix=$HOME/usr/local install
> %mkdir $HOME/svn
> %cd $HOME/svn
> %svnadmin create reps
> 
> /usr/bin_ssh exists and works. So, I need to rebuild Subversion, I understand.
> But how can I tell it the correct ssh path?

I'm not sure, I just assumed that, since the error message said "usr/bin/ssh", which is not a valid path, instead of "/usr/bin/ssh", that something must be telling Subversion to use that wrong path. Do you perhaps have an environment variable set (such as SVN_SSH) that mentions that path? Or something in your .profile, .bash_profile, .bashrc, etc.?

P.S: If you're building from source, why use an old version? If you require the 1.6.x branch for some reason, then 1.6.17 is the latest version of that branch, but 1.7.2 is the latest stable version, so I recommend you use that instead.

http://subversion.apache.org/download/




Re: Subversion reports error.

Posted by Ryan Schmidt <su...@ryandesign.com>.
On Feb 7, 2012, at 14:17, Masaru Kitajima wrote:

> I installed Subversion 1.6.15 on a rented server. The installation
> seemed successful.
> 
> I'm not sure what machine they use, but have some information.
> The server running FreeBSD 7.1-RELEASE-p16i386.
> CPU is Intel Xeon CPU E3110@3GHz.
> Memory is 3.25GB.
> Apache version 1.3.42.
> 
> When I tried to confirm if the installation was well done using
> "svn info svn+ssh://section-9@section-9.sakura.ne.jp/home/section-9/svn/reps",
> the server said
> "( failure ( ( 2 86:Error in child process: posix_spawn of 'usr/bin/ssh'
> failed: No such file or directory 84:/SourceCache/subversion/subversion-44.1/subversion/subversion/libsvn_ra_svn/client.c 457 ) ) ) svn: Can't create 
> tunnel: No such file or directory".
> 
> I double-checked the username and location of the repository, but no mistakes
> were found.

It sounds like the error message is telling you that the program 'usr/bin/ssh' does not exist. This is not surprising; I would have thought this should say '/usr/bin/ssh' (with a leading slash).

How did you install Subversion? Does /usr/bin/ssh exist and work? If so, you may need to rebuild Subversion and either tell it or let it figure out on its own where ssh is on your system.