Search code examples
linuxodoolinux-mintodoo-15

How can I kill Odoo running locally on Linux (Mint)


I installed the Odoo Debian package (from here). Now it just started running and I can't stop it. I want to start it again with a different config file but I can't find a way to kill the instance that is currently running.

I have tried to find the process using fuser 8069/tcp and lsof -i:8069 but there are no processes shown.

Odoo is not on my list of Startup Applications yet even after reboot it is still running.

How can I kill it? And how can I prevent it from starting on reboot?


Solution

  • Run ps aux||grep

    Find a process that contains this command python3 odoo-bin -c odoo.conf

    Take the pid for that process and kill

    sudo kill -9 PID_HERE