4

我想卸载 Odoo 9 并在我的 linux 系统中重新安装。谁能帮帮我吗?

4

1 回答 1

11

只需按照以下步骤

service odoo-server stop

删除配置文件

rm -f /etc/odoo-server.conf
rm -f /etc/odoo.conf

删除应用程序代码

rm -R /opt/odoo

删除启动过程

update-rc.d -f odoo-server remove
rm -f /etc/init.d/odoo-server

删除日志

rm -R /var/log/odoo

删除数据库

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

删除用户和组

userdel -r postgres
groupdel postgres

要删除 postgre 找到文件pg_hba.conf- 它可能位于,例如/etc/postgresql-9.1/pg_hba.conf.

cd /etc/postgresql-9.1/

把它备份

cp pg_hba.conf pg_hba.conf-backup

放置以下行(作为第一个未注释的行,或作为唯一的行):

local  all   all   trust

重启你的 PostgreSQL 服务器(例如,在 Linux 上:)

sudo /etc/init.d/postgresql restart

您现在可以以任何用户身份连接。以超级用户 postgres 连接(注意,超级用户名在您的安装中可能不同。例如,在某些系统中,它称为 pgsql。)

psql -U postgres

重设密码

ALTER USER my_user_name with password 'my_secure_password';

恢复旧pg_hba.conf的,因为保留很危险

cp pg_hba.conf-backup pg_hba.conf

重启服务器,以便安全运行pg_hba.conf

sudo /etc/init.d/postgresql restart
于 2016-02-23T06:44:58.070 回答