InterviewSolution
| 1. |
How To Setup A Cvs Server? |
|
Answer» CVS is not setup as a separate daemon that listens continuously for a connection, it USES Inetd (Internet Daemon) to bind a connection request to the port used for CVS (2401) to the CVS SERVER. The following commands should be executed as root. The file that supplies the information about which ports MAP to which services is /etc/services, EDIT this file and add the line:
This restarts inetd. Logon to some other machine and test the access USING the cvs login command. CVS is not setup as a separate daemon that listens continuously for a connection, it uses Inetd (Internet Daemon) to bind a connection request to the port used for CVS (2401) to the CVS server. The following commands should be executed as root. The file that supplies the information about which ports map to which services is /etc/services, edit this file and add the line: This restarts inetd. Logon to some other machine and test the access using the cvs login command. |
|