This question has been flagged
2 Replies
4445 Views

Hi everyone, I am new to odoo, I recently installed odoo14 comunity on a Win10 virtual machine in Azure. When I try to access my server through the public IP I don't get a response. I clarify that port 80 is open and I can reach it via telnet.


Note: Please let me know if odoo requires an additional web server to expose the service.


Thanks for your support.

Avatar
Discard
Author

@Sudhir Arya

Thanks for the quick reply.

Change the default listening port in the file (Odoo.conf), that is, 8069 to 80.

Best Answer

Please double-check if port 8069 is also open because Odoo runs on the 8069 port by default.

Avatar
Discard
Best Answer

azure server by default http traffic is not allowed. you can access Apache's default page that means you have allowed the http traffic.
May be your problem is with port. if you are starting odoo on port default port(8069) you need to that port. for that you need run a command on terminal using root like

​iptables -I INPUT 1 -p tcp --dport 8080 -j ACCEPT 

after that you can access odoo on http://your.ip:8069


Avatar
Discard