我正在运行 ubuntu 13.04 openerp 7.0 并安装了 postgreSQL
请帮我设置数据库。我是 openerp 的新手!
这些是您可以简单地复制和粘贴的命令(因为您已经安装了只需验证它们)
第 1 步 - 安装 Postgres
$ sudo apt-get install postgresql-9.1
第 2 步 - 将密码更改为 postgres 用户
$ sudo passwd postgres
第 3 步 - 登录到 postgres 用户
$ su postgres
第 4 步 - 登录到 postgres 数据库
$ psql
第 5 步 - 为 openerp 创建一个用户
postgres=# create user openerp70 with password 'yourpassword';
第 6 步 - 授予 openerp 用户 create db 权限
postgres=# alter user openerp70 createdb;
第 7 步 - 从 postgres 注销并重新启动 postgres 服务器
postgres=# \q
$ sudo service postgresql restart
现在在openerp-server.conf中,它位于您的 openerp 安装目录/ install
[options]
; This is the password that allows database operations:
; admin_passwd = admin
db_host = localhost
db_port = 5432
db_user = openerp70
db_password = yourpassword
xmlrpc_port=7575
netrpc_port=7576
现在重新启动服务器并通过单击登录页面上的管理数据库链接创建数据库
查看这些资源以获取更多信息
http://www.youtube.com/watch?v=5jRC27vbhN4
如何在 ubuntu 13.04 桌面安装 openERP?
干杯!!