On my flavour of Linux this would work:
ps auxww | fgrep svnserve
Then the number in the second column is the process id, then I can do:
kill <process id> (without the <> brackets)
and in the worst case (e.g. svnserve won't stop after many minutes):
kill -9 <process id>
ps auxww | fgrep svnserve
Then the number in the second column is the process id, then I can do:
kill <process id> (without the <> brackets)
and in the worst case (e.g. svnserve won't stop after many minutes):
kill -9 <process id>
Aucun commentaire:
Enregistrer un commentaire