Page 7 of 7 FirstFirst ... 567
Results 61 to 62 of 62

Thread: Subversion

  1. #61
    Join Date
    Jun 2011
    Posts
    1

    Default Can't connect from my local machine.

    Everything seems to be working fine in the server. If I type:

    svn list svn+ssh://user@domain/home2/usuer/svnrepos/trunk

    The system asks for the password and then list the contents. But the same URL (svn+ssh://user@domain/home2/usuer/svnrepos/trunk) when doing a repo-browser or a chechout from the subversion client doesn't work: it asks many times for the password but finally is unable to connect.

    I have my Subversion client working perfectly with other repositories, even using SSH keys, but I still didn't find the way to connect to my repository in Hostmonster.

    Did anybody find a solution?

  2. #62

    Default

    I have installed subversion and I can run the commands

    svn help
    svn --version
    svnserve --help
    svnserve --version


    without any problems.

    So what I did was created a new repository using svnadmin create help which is in the path [~/svn/repos/help]

    When I try to run
    svn list svn+ssh://myuser@www.mydomain.com/home/svn/repos/help

    it asks me for the password and once I entered it it says:

    bash: svnserve: command not found
    svn: To better debug SSH connection problems, remove the -q option from 'ssh' in the [tunnels] section of your Subversion configuration file.
    svn: Network connection closed unexpectedly

    below are the contents of my .bash_profile and .bashrc files. Not sure what's going on as it seems the path are set right since I can tun the commands.

    Code:
    # .bash_profile
    
    # Get the aliases and functions
    if [ -f ~/.bashrc ]; then
            . ~/.bashrc
    fi
    
    source .bashrc
    
    # User specific environment and startup programs
    
    PATH=$PATH:$HOME/bin:$HOME/bin/bin/
    export PATH
    
    unset USERNAME
    PATH=$PATH:$HOME/bin/bin/
    export PATH
    Code:
     .bashrc
    
    # User specific aliases and functions
    
    # Source global definitions
    if [ -f /etc/bashrc ]; then
            . /etc/bashrc
    fi
    
    PATH=$PATH:$HOME/bin:$HOME/system/bin/$HOME/lapendac/bin/
    export PATH
    
    PATH=$PATH:$HOME/bin/bin
    export PATH
    Any help with this will be appreciated.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •