在 window OS 上无法访问此站点 odoo 11.0 localhost:8069 运行

This site can’t be reached odoo 11.0 localhost:8069 running on window OS

我在 http://nightly.odoocdn.com/11.0/nightly/exe/odoo_11.0.latest.exe

的 win 10 上安装了 odoo_11.0.latest.exe

我安装了 http://get.enterprisedb.com/postgresql/postgresql-9.6.1-1-windows-x64.exe,在 pgAdmin 中我可以在 localhost:5432 中看到服务器(用户 openpg,PW openpgpwd)

我 运行 使用默认值的 odoo 安装程序,当我单击完成时浏览器打开 http://localhost:8069/ with msg This site can’t be reached, localhost refused to connect.

http://localhost:8069/web/database/manager

中的相同消息

BTW 企业版顺利安装,但是还安装了postgresql with DB odoo_tst.

如何调试?

以下是我如何 运行 odoo 10 on win:

  1. 安装vagrant及其依赖virtualbox

  2. 在命令中:vagrant init ubuntu/xenial32

  3. 在 Vagrantfile 中添加行

    config.vm.network"private_network",ip:"55.55.55.7"

  4. 流浪者重新加载

  5. 流浪起来

  6. vagrant ssh

  7. 关注此安装https://www.getopenerp.com/install-odoo-10-on-ubuntu-16-04/

  8. sudo su - postgres

  9. cd /opt/odoo/odoo-10

  10. odoo-bin

站点应该可以在 http://55.55.55.7:8069/

访问

我遇到了同样的问题,最后我通过以下步骤成功了(odoo11):

  1. 确保你有 运行 odoo 服务

  2. 检查你的 postgres

  3. 看看你的配置文件C:\Program Files (x86)\Odoo 11.0\server\odoo.conf

.... 
db_name = False
db_password = openpgpwd
db_port = 5432
db_sslmode = prefer
db_template = template1
db_user = openpg
.... 
  1. 访问 http://localhost:8069 并按照屏幕进行安装,尽情享受吧。