Current location - Quotes Website - Collection of slogans - How to start SVN service under linux?
How to start SVN service under linux?
Go to the installation directory of SVN first For example, you installed it under /home/svn. Then go to the bin directory, where you can see a file named svnserve, which we need to start the SVN service.

1 First check the process of svn:

View process command: ps -ef (view all processes); To filter, use grep, and filter svn's process command: ps -ef|grep svn.

2? Kill the main process:

The command to terminate the process uses the kill -9 process id.

3: start svn:

The command to start svn uses the SVN server-d-r installation path.

-d means that svnserve.exe runs in the background as a service program; -r means to use the directory of svn as the root directory.