I have a problem of cvs;
here is the steps that I had done:
login as root
1.
#groupadd cvs
#adduser cvsroot
#passwd cvsroot
//here I input the password ,for eample
//the password is abcdefg
//of course ,now,there should be a new
//directory /home/cvsroot
2.
#chown cvsroot.cvs /home/cvsroot
#chmod 755 /home/cvsroot
3.
//edit a new service
//in the /etc/xinetd.d
#vi cvspserver
//here is the detail of this file
//########################################
service cvspserver
{
disable = no
flags = REUSE
socket_type= stream
wait = no
user = root
server = /usr/bin/cvs
server_args = --allow-root=/home/cvsroot pserver
log_on_failure +=USERID
}
//########################################
//can you tell me the meaning of this file?
4.
#cvs -d /home/cvsroot/init
//now, there should be a new directory
//in /home/cvsroot/CVSROOT
#/etc/init.d/xinetd restart
//I use netstat -l |grep tcp,I can found the line of tcp 0 0:cvspserver :*LISTEN
//now, the system show the service of xinetd is shutdown and start again
#cvs -d :pserver:cvsroot@localhost:/home/cvsroot login
//the system told me to input the passwd
#CVS passwd:
//and I input the password of cvsroot ,abcdefg
//but now ,sys system told me the server
//had denied my login,I have no access
// why?why I can't use it now?
and what I should do?
Thanks sincerly!
In fact ,the steps si followed by another post,Now,I dont't know why,I just a beginner on linux,the version of my sysytem is
redhat 7.2;
I installed alllthe packages of this version.