Clean couchdb and restart

后端 未结 5 1999
没有蜡笔的小新
没有蜡笔的小新 2021-02-04 09:15

What is command to clean CouchDB please ? And if I want to disable and re-start my CouchDB what is command?

Thanks

5条回答
  •  -上瘾入骨i
    2021-02-04 09:46

    This can be somewhat dependent on OS and its version. On Ubuntu 14.04, for example (which is transitioning away from sysvinit), /etc/init.d/couchdb commands don't work for me. I have to do:

    sudo service couchdb restart
    

    So use the curl method posted by user2744667 (with root/admin privileges), or use the standard method for restarting daemons/services for your OS.

    Finally, as a last resort, you could kill the process. This is not the recommended way to do it, and it is not "clean" as you indicated in the question. You will likely find that CouchDB is agressive about respawning itself. But if you are in a homicidal mood, all that kill-ing could be just the thing.

提交回复
热议问题