How can I remove jenkins completely from linux

后端 未结 5 1547
执念已碎
执念已碎 2021-02-03 17:30

I have deleted jenkins all directories from different folders. But still when I access URL it is showing me jenkins login.

I want to uninstall jenkins completely. Have t

5条回答
  •  渐次进展
    2021-02-03 18:01

    If your jenkins is running as service instead of process you should stop it first using

    sudo service jenkins stop
    

    After stopping it you can follow the normal flow of removing it using commands respective to your linux flavour

    For centos it will be

    sudo yum remove jenkins
    

    For ubuntu it will

    sudo apt-get remove --purge jenkins
    

    I hope this will solve your issue.

提交回复
热议问题