Siirry sisältöön
Menu
Sinun on rekisteröidyttävä, jotta voit olla vuorovaikutuksessa yhteisön kanssa.
Tämä kysymys on merkitty
2 Vastaukset
58347 Näkymät

Hello everyone,  How to uninstall my Odoo 10 completely

Avatar
Hylkää
Paras vastaus

Hi, louie

You can follow this:

Overview

Sometimes we need to remove all settings and files from our Linux system. There are some easy steps to do that and Odoo remove from ubuntu

Steps of work

  • Stop server
  • Remove all files
  • Remove PostgreSQL from system

Follow the below steps to remove Odoo from ubuntu:

Stop Server odoo server

sudo service odoo-server stop

Remove all odoo files
sudo rm -R /opt/odoo

Now We can Remove Configuration Files
sudo rm -f /etc/odoo-server.conf
sudo rm -f /etc/odoo.conf

If your Odoo system is a hook with startup. Then run those commands
update-rc.d -f odoo-server remove
sudo rm -f /etc/init.d/odoo-server

Delete User and User group

userdel -r postgres
groupdel postgres

Now Remove Database

sudo apt-get remove postgresql -y
sudo apt-get --purge remove postgresql\* -y
sudo rm -r -f /etc/postgresql/
sudo rm -r -f /etc/postgresql-common/
sudo rm -r -f /var/lib/postgresql/

Follow those steps and you can easily remove odoo from your ubuntu.

Make sure it will helpful.

Thank You.

Avatar
Hylkää
Paras vastaus

Hello,

Take reference from below helpful link.

https://nayon.net/how-to-remove-odoo-from-ubuntu/


https://stackoverflow.com/questions/35570093/removing-odoo-9-from-ubuntu-14-04-desktop


https://gist.github.com/abdulhalim-cu/bc3d86ec54096ba8807c4469694150a8

\

Avatar
Hylkää