I've start a repository from a Unix command line : java -jar blabla/jackrabbit &
and now I would like to stop it. From the docs, only Ctrl-C can close it. Since I can't use fg because it is a not a registered job. I've tried kill -SIGINT [pid] but it also does not work. Is there a proper way to close it without killing it? F
