这个站点无法访问odoo 11.0 localhost:8069在窗口OS上运行

时间:2016-12-03 09:44:45

标签: odoo-10 odoo-11

我在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安装程序,当我点击完成浏览器时,使用msg This site can’t be reached, localhost refused to connect.

打开http://localhost:8069/

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

中的相同信息

BTW企业版安装顺利,但它也安装了带有db odoo_tst的postgresql。

如何调试?

2 个答案:

答案 0 :(得分:1)

我遇到了同样的问题,终于可以通过以下步骤(odoo11)获得成功:

  1. 确保已运行odoo服务 enter image description here

  2. 检查Postgres

    enter image description here

  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并按照屏幕上的说明进行安装,然后享用。

答案 1 :(得分:0)

Here is how I was able to run odoo 10 on win:

  1. install vagrant and it's dependency virtualbox

  2. in the cmd to: vagrant init ubuntu/xenial32

  3. add line in Vagrantfile

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

  4. vagrant reload

  5. vagrant up

  6. vagrant ssh

  7. follow this install https://www.getopenerp.com/install-odoo-10-on-ubuntu-16-04/

  8. sudo su - postgres

  9. cd /opt/odoo/odoo-10

  10. odoo-bin

site should be reachable at http://55.55.55.7:8069/