View previous topic :: View next topic |
Author |
Message |
jaltiere n00b
Joined: 24 Mar 2004 Posts: 4
|
Posted: Sun Mar 28, 2004 5:49 am Post subject: cvs server question |
|
|
I'm trying to get my cvs server running and I'm running into this error mesage when I try to add a file:
cannot open CVS/Entries for reading: No such file or directory
[add aborted]: no repository
I've searched for hours to try and figure out how to resolve this but I haven't found anything that worked.
Background info:
I'm running this through pserver, here is my cvspserver config file:
Code: |
service cvspserver
{
disable = no
socket_type = stream
wait = no
user = root
group = root
log_type = FILE /var/log/cvspserver
protocol = tcp
env = HOME=/home/cvs
log_on_failure += USERID
port = 2401
server = /usr/bin/cvs
server_args = -f --allow-root=/home/cvs/repository pserver
}
|
I'm trying to make /home/cvs/repository the base directory for the repository. I'm using wincvs from another computer to try and add files, I can connect to the server and login, I just can't add any files. My guess is that something in the above file is wrong, but I'm not sure.
Can someone please help me out here? I'm going CRAZY!!! _________________ Jack Altiere
Web Developer |
|
Back to top |
|
|
jaltiere n00b
Joined: 24 Mar 2004 Posts: 4
|
Posted: Sun Mar 28, 2004 10:33 pm Post subject: |
|
|
anyone? _________________ Jack Altiere
Web Developer |
|
Back to top |
|
|
jaltiere n00b
Joined: 24 Mar 2004 Posts: 4
|
Posted: Tue Mar 30, 2004 12:37 am Post subject: |
|
|
one more try........ _________________ Jack Altiere
Web Developer |
|
Back to top |
|
|
pmatos Veteran
Joined: 06 Jun 2003 Posts: 1246 Location: Eckental, Germany
|
Posted: Mon May 10, 2004 7:28 pm Post subject: Re: cvs server question |
|
|
Hi,
Here's mine:
Code: | descartes root # cat /etc/xinetd.d/cvspserver
service cvspserver
{
disable = no
socket_type = stream
wait = no
user = cvs
group = cvs
log_type = FILE /var/log/cvspserver
protocol = tcp
env = HOME=/var/cvsroot
log_on_failure += USERID
port = 2401
server = /usr/bin/cvs
server_args = -f --allow-root=/var/cvsroot pserver
} |
But your problem is that you haven't started a repository at /home/cvs...
Try:
Code: | cvs -d /usr/local/cvsroot init |
Here's a stepbystep guide:
http://www.cvshome.org/docs/manual/cvs-1.11.15/cvs_2.html#SEC23
Good luck,
Cheers,
Paulo Matos
jaltiere wrote: | I'm trying to get my cvs server running and I'm running into this error mesage when I try to add a file:
cannot open CVS/Entries for reading: No such file or directory
[add aborted]: no repository
I've searched for hours to try and figure out how to resolve this but I haven't found anything that worked.
Background info:
I'm running this through pserver, here is my cvspserver config file:
Code: |
service cvspserver
{
disable = no
socket_type = stream
wait = no
user = root
group = root
log_type = FILE /var/log/cvspserver
protocol = tcp
env = HOME=/home/cvs
log_on_failure += USERID
port = 2401
server = /usr/bin/cvs
server_args = -f --allow-root=/home/cvs/repository pserver
}
|
I'm trying to make /home/cvs/repository the base directory for the repository. I'm using wincvs from another computer to try and add files, I can connect to the server and login, I just can't add any files. My guess is that something in the above file is wrong, but I'm not sure.
Can someone please help me out here? I'm going CRAZY!!! |
_________________ Paulo Matos |
|
Back to top |
|
|
|