Home > Software engineering >  How can I kill Odoo running locally on Linux (Mint)
How can I kill Odoo running locally on Linux (Mint)

Time:08-13

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?

CodePudding user response:

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
  • Related