SVN服务的启动与关闭[linux]

ps -A   只列出所有进程,并不显示环境变量。
ps -ef 列出所有进程,并显示环境变量,而且显示全格式。

  • 关闭
    1. 查到服务的进程号:
      ps -A | grep svn
      1597 ?        00:00:00 svnserve
    2. 关闭进程:kill 1597
  • 启动
    1. 启动服务:(默认启动开启 3690端口)
      svnserve -d -r  /home/beijing/soft/svn
    2. 设置端口:
      • svnserve --listen-port 3691 -d -r /home/beijing/soft/svn
    3. netstat -ntlp 端口是否开启
      • tcp 0 0 0.0.0.0:3690 0.0.0.0:* LISTEN 4624/svnserve
        tcp 0 0 10.88.107.91:3306 0.0.0.0:* LISTEN -
        tcp 0 0 0.0.0.0:3691 0.0.0.0:* LISTEN 4621/svn

 

  • 查看启动结果:ps -ef|grep svn

    --查看svn进程,结果如下:

    root      1597     1  0 08:09 ?        00:00:00 svnserve -d -r /home/beijing/soft/svn --log-file /data/svnlog/svn.log
    beijing   2650  2207  0 10:07 pts/4    00:00:00 grep --color=auto svn


你可能感兴趣的:(linux,svn)