View previous topic :: View next topic |
Author |
Message |
psingcaster n00b
Joined: 24 Apr 2002 Posts: 59 Location: Québec, Canada
|
Posted: Mon Mar 15, 2004 9:00 pm Post subject: CVS Server |
|
|
Hi everybody, I installed a CVS server and configured it. But i'm not able to connect to it. Access refused all the time! I reed all the topic on that forum about cvs server but nothing solve my problem!
- xinetd start the server correctly
- my /var/cvsroot/passwd is set to cvs::cvs
- mys CVS_RSH is set to ssh
- my repository is /var/cvsroot and rights are set to cvs:cvs
- I try to connect to the server by this line: cvs -d :pserver:cvs@127.0.0.1:/var/cvsroot
What's wrong?!? |
|
Back to top |
|
|
Plaz Tux's lil' helper
Joined: 15 Sep 2002 Posts: 101 Location: Portland, OR
|
Posted: Tue Mar 16, 2004 5:48 am Post subject: CVS Server |
|
|
Quote: | - my /var/cvsroot/passwd is set to cvs::cvs
|
Shouldn't that be /var/cvsroot/CVSROOT/passwd if you created your repository at /var/cvsroot using 'cvs init'?
Do you have 'readers' or 'writers' files in your CVSROOT directory? If so, do they contain 'cvs' entries? |
|
Back to top |
|
|
psingcaster n00b
Joined: 24 Apr 2002 Posts: 59 Location: Québec, Canada
|
Posted: Tue Mar 16, 2004 5:45 pm Post subject: You got it! |
|
|
You got it!
But it's strange because if the cvs server don't find the passwd file, it's supose to go directly to /etc/passwd ?!? Anyways, it's working now... BUT
It is working locally. When I try from another computer I have this message:
cvs [login aborted]: reading from server: Connection reset by peer
I'm shure there is a stupid reason for that, you have an idea?!? |
|
Back to top |
|
|
Plaz Tux's lil' helper
Joined: 15 Sep 2002 Posts: 101 Location: Portland, OR
|
Posted: Wed Mar 17, 2004 6:55 am Post subject: |
|
|
Quote: | It is working locally. When I try from another computer I have this message:
cvs [login aborted]: reading from server: Connection reset by peer
I'm shure there is a stupid reason for that, you have an idea?!?
|
Hmmm. I seem to remember seeing that at some point, but I don't remember what it was. It seemed to go away when I restarted the server.
What's the cvs login line that you're using on the remote system? Can you telnet to the pserver port from the remote system without any trouble?
Code: | telnet <server_ip_addr> 2401
testing |
You should get something like "bad auth protocol start" if you successfully contacted the CVS pserver process. |
|
Back to top |
|
|
|