从社区版切换到企业版¶
根据您当前的安装情况,有多种升级社区版本的方法。无论哪种情况,基本准则都是:
备份您的社区数据库
关闭您的服务器
安装 web_enterprise 模块
重启您的服务器
请输入您的Odoo企业订阅代码
在Linux上,使用安装程序¶
备份您的社区数据库
停止odoo服务
$ sudo service odoo stop
安装企业版 .deb 文件(应该可以覆盖社区版包)
$ sudo dpkg -i <path_to_enterprise_deb>
使用以下命令将您的数据库更新为企业套餐:
$ python3 /usr/bin/odoo-bin -d <database_name> -i web_enterprise --stop-after-init
您应该能够使用您通常的身份验证方式连接到您的Odoo企业版实例。然后,您可以在表单输入框中输入您通过电子邮件收到的代码,将您的数据库与Odoo企业版订阅链接起来。
在Linux上,使用源代码¶
使用源代码启动服务器有很多方法,您可能有自己喜欢的方法。您可能需要根据您的常规工作流程调整部分内容。
关闭您的服务器
备份您的社区数据库
更新启动命令的
--addons-path
参数(参见 ../install/source)使用以下命令安装web_enterprise模块
$ -d <database_name> -i web_enterprise --stop-after-init
根据您的数据库大小,这可能需要一些时间。
使用更新后的插件路径重新启动服务器。您应该能够连接到您的实例。然后,您可以在表单输入框中输入您通过电子邮件收到的代码,将您的数据库与您的Odoo企业订阅链接。
在Windows上¶
备份您的社区数据库
卸载Odoo社区版(使用安装文件夹中的卸载可执行文件)- PostgreSQL将保留安装
Launch the Odoo Enterprise Installer and follow the steps normally. When choosing the installation path, you can set the folder of the Community installation (this folder still contains the PostgreSQL installation). Uncheck
Start Odoo
at the end of the installation使用命令窗口,使用以下命令更新您的Odoo数据库(从Odoo安装路径,在服务器子文件夹中)
$ ..\python\python.exe odoo-bin -d <database_name> -i web_enterprise --stop-after-init
无需手动启动服务器,服务正在运行。您应该能够使用您通常的身份验证方式连接到您的Odoo企业版实例。然后,您可以通过在表单输入中输入您通过电子邮件收到的代码来将您的数据库与Odoo企业版订阅链接。