我已經預先在端口5432和5433上安裝了postgres,postgres-9.3和pgadmin。如何在ubuntu上安裝Odoo 9?
卸載然後他們嘗試使用http://openies.com/blog/install-openerp-odoo-9-on-ubuntu-server-14-04-lts/
本教程安裝odoo 9。
但是當我ttrying執行命令
createuser --createdb --username postgres --no-createrole --no-superuser --pwprompt odoo
則給出以下錯誤:
CREATEUSER:無法連接到數據庫的Postgres:無法連接 到服務器:沒有這樣的文件或目錄服務器是否在本地運行 並接受Unix域套接字 「/var/run/postgresql/.s.PGSQL.5432」上的連接?
sudo netstat -nltp | grep 5432沒有顯示任何結果。
的pg_hba.conf
# Database administrative login by Unix domain socket
local all postgres peer
# TYPE DATABASE USER ADDRESS METHOD
# "local" is for Unix domain socket connections only
local all all peer
# IPv4 local connections:
host all all 127.0.0.1/32 md5
# IPv6 local connections:
host all all ::1/128 md5
# Allow replication connections from localhost, by a user with the
# replication privilege.
#local replication postgres peer
#host replication postgres 127.0.0.1/32 md5
#host replication postgres ::1/128 md5
您可以獲取安裝指南[這裏](http://openies.com/blog/install-openerp-odoo-9-on-ubuntu-server-14-04-lts/)或[here](https:// www。 getopenerp.com/install-odoo-9-on-ubuntu-14-04-lts/)。 –