
Odoo中文社区可以通过以下两个域名访问:shine-it.net , odoo.net.cn
由于系统升迁的原因,本论坛部分较早期的内容存在格式和链接损坏失效的问题,并非本论坛系统本身的缺陷,望谅解
本社区没有维护任何QQ群讨论组,任何与本社区同名的QQ群讨论组的言论与本社区无关!
开发人员可以登录gitter讨论组: http://gitter.im/odoo-china/Talk, 需要github账号
如果您登录系统碰到问题,请在微信公众号留言:
请教关于从代码进行TinyERP安装时出现的问题
-
大家好,我已经把,从代码安装TinyERP的软件装好了,可是在PostgreSQL代码命令窗口中输入createdb <your_tinyerp_databasename> --encoding=UNICODE --username=<your_database_admin_username>
时,出现提示The syntax of the command is incorrect. 大家知道省么原因吗? -
To start postgresql use pg_ctl in same directory.
To create a database for your OpenERP server, open a command prompt (cmd window) and use this manual command (the current working directory doesn't matter if you have in PATH the postgresql bin directory):
createdb <your_tinyerp_databasename> --encoding=UNICODE --username=<your_database_admin_username>
orcreatedb <your_tinyerp_databasename> -E UNICODE -U <your_database_admin_username>
Sample command prompt:C:terptestserv>createdb terp --encoding=UNICODE --username postgresadmin Password: <enter password again>CREATE DATABASE C:terptestserv>Your output may differ, and if you're prompted a second time for the password just input it again. You can try the same command again, and after entering the password it would display this error:
createdb: database creation failed: ERROR: database "terp" already existsNow you are ready to setup the OpenERP server.
-
createdb <your_tinyerp_databasename> --encoding=UNICODE --username=<your_database_admin_username>
可不可以这么认为,楼主的问题类似于:"键盘上没有“任意键”这个键啊?"[[i] 本帖最后由 oldrev 于 2008-12-18 21:17 编辑 [/i]]
-
呵呵这世界需要oldrev更需要他的幽默
不过我觉得楼主的幽默感更强。让我想起第一次上机时的美好时光。
-
楼主真是89年的王丹么?请恕在下有眼无珠,失敬了....
-
我已经从源代码安装成功了,
谢谢大家的帮忙:)