我已经搜索了很多源没有任何成功.我安装了odoo 14在我的系统,现在试图创建第一个数据库,它是给数据库创建错误.
我的odoo-server.conf:
[options]
; This is the password that allows database operations:
admin_passwd = admin
db_host = False
db_port = False
db_user = odoo
db_password = False
logfile = /var/log/odoo/odoo-server.log
addons_path = /opt/odoo/src/addons,/opt/odoo/src/odoo/addons
psql中存在的数据库列表:
List of databases
Name | Owner | Encoding | Collate | Ctype | Access privileges
----------------+----------+----------+---------+-------+-----------------------
UNEXT-COE21 | postgres | UTF8 | en_IN | en_IN |
engro | postgres | UTF8 | en_IN | en_IN |
myproject | postgres | UTF8 | en_IN | en_IN |
postgres | postgres | UTF8 | en_IN | en_IN |
template0 | postgres | UTF8 | en_IN | en_IN | =c/postgres +
| | | | | postgres=CTc/postgres
template1 | postgres | UTF8 | en_IN | en_IN | =c/postgres +
| | | | | postgres=CTc/postgres
testdb | postgres | UTF8 | en_IN | en_IN | =Tc/postgres +
| | | | | postgres=CTc/postgres+
| | | | | arijit=CTc/postgres
unextcoeserver | postgres | UTF8 | en_IN | en_IN |
PSQL用户:
List of roles
Role name | Attributes | Member of
-----------+------------------------------------------------------------+-----------
arijit | Create DB | {}
odoo | Create DB | {}
postgres | Superuser, Create role, Create DB, Replication, Bypass RLS | {}
2条答案
按热度按时间wj8zmpe11#
我已经解决了这个问题。通过修改Odoo.config文件并使用CLI运行相同的文件。
那些面临类似问题的人,试试这个它应该能帮助你:
在odoo目录中创建一个odoo.conf。
运行以下命令:
用你自己的postgresql数据库替换test_new。我以前用后端做数据库,因为某些原因,它不适用于Odoo,所以用PGAdmin作为替代方案,解决了我的问题。
8yparm6h2#
我得到了类似的问题.我想更新我的应用程序,但我得到了一个错误,然后我检查我的数据库发现新的字段没有添加.然后我尝试删除admin_passwd在odoo.conf和它的工作!新的数据库odoo 15创建成功,但我仍然得到这个错误. x1c 0d1x