Startup and Close of SVN Service under CentOS

Starting and shutting down the SVN service under CentOS

Operating system: CentOS 6.5
SVN version: 1.8.11

p>

Start the SVN service:
svnserve -d -r /home/svn

/home/svn is the root directory of the repository;

Close the SVN service:
Use the following command to find the process
ps aux | grep svn

# ps aux | grep svn< /span>root 64434 0.0 0.0 < span class="hljs-number">181584 1120? Ss 02:01 0:00 svnserve -d -r /home/svnroot 64481 0.0 0.0 103256 848 pts/1 S+ 02:03 0: 00 grep svn
  • 1
  • 2
  • 3

Use the Kill command to kill the process
kill -s 9 64434

64434 is the process ID

Let’s share my teacher’s artificial intelligence tutorial. Zero-based! Easy to understand! Funny and humorous! Also bring yellow jokes! Hope you join our artificial intelligence team too! https://blog.csdn.net/jiangjunshow

Starting and shutting down the SVN service under CentOS

Operating system: CentOS 6.5
SVN version : 1.8.11

Start the SVN service:
svnserve -d -r /home/svn

/home/svn is the root directory of the repository;

< p>Close the SVN service:
Use the following command to find the process
ps aux | grep svn

# ps aux | grep svnroot 64434 0.0  0.0 181584 1120? Ss 02 span>:01 0:00 svnserve -d -r /home/svnroot 64481 0.0 span> 0.0 103256 848 pts/< span class="hljs-number">1 S+ 02:03 0:00 grep svn
  • 1
  • 2
  • 3

Use the Kill command to kill the process
kill -s 9 64434

64434 is the process ID

Leave a Comment

Your email address will not be published.