This question has been flagged
5 Replies
27514 Views

Hi guys,

I installed odoo 10 at cloud server Digital Ocean on ubuntu 16.04. It is running at 0.0.0.0:8069.

# ps aux | grep odoo
# odoo ... /usr/bin/python /usr/bin/odoo --config /etc/odoo/odoo.conf --logfile
/var/log/odoo/odoo-server.logroot ...... grep --color=auto odoo

But not visible on browser by cloud IP address.

http://cloud_IP_address:8069/

My log is

2017-01-05 09:59:04,162 22301 INFO ? odoo.service.server: Initiating shutdown
2017-01-05 09:59:04,181 22301 INFO ? odoo.service.server: Hit CTRL-C again or send a second signal to force the shutdown.2017-01-05 09:59:05,630 20555 INFO ? odoo: Odoo version 10.0-20170103
2017-01-05 09:59:05,631 20555 INFO ? odoo: Using configuration file at /etc/odoo/odoo.conf2017-01-05 09:59:05,631 20555 INFO ? odoo: addons paths: ['/opt/odoo/.local/share/Odoo/addons/10.0', u'/usr/lib/python2.7/dist-packages/odoo/a$
2017-01-05 09:59:05,631 20555 INFO ? odoo: database: odoo@0.0.0.0:default]
2017-01-05 09:59:05,657 20555 INFO ? odoo.service.server: HTTP service (werkzeug) running on 0.0.0.0:8069


Odoo is running in 0.0.0.0:8069 , how can I load in my browser using IP

Plz help me !


Avatar
Discard

Hi shameem, what issue are you facing, can you pls explain in detail.The details of cloud ip address you have provided i.e., not an IP address, its port number(8069).

Same issue facing after installation By following below steps, Odoo server is active but not loading in browser. 0.0.0.0:8069.

1. Download my installation script from Github and copy it locally:

sudo wget https://raw.githubusercontent.com/Yenthe666/InstallScript/11.0/odoo_install.sh

2. Edit the file and modify the parameters that you'd like to change:

sudo nano odoo_install.sh

Tip: If you'd like the enterprise version you should set IS_ENTERPRISE to True instead of false.

3. Make the file executable:

sudo chmod +x odoo_install.sh

4. Execute the script and wait a few minutes for Odoo to install:

./odoo_install.sh

Best Answer

This usually caused by firewall. Your Odoo is running and listening on port 8069, but firewall is blocking that port so browser cannot connect to it. Try temporarily disable firewall and retry.

If you are using firewalld, these commands may be useful:

systemctl stop firewalld    # To disable firewall
systemctl start firewalld    # Turn it back on
firewall-cmd --zone=public --add-port=8069/tcp   # Open port 8069 to allow access from outside.
Avatar
Discard

Good troubleshooting step Thanh!

I had already set the firewall open command as you suggest - and external access fails. However when I turn off the firewall, everything is fine.

Perhaps there is ANOTHER firewall rule required?

Sorry, not enough karma to edit my comment above. As soon as I posted it, I tried to restart the firewall and it failed to start; some Fedora error. So, there is a firewall problem unrelated to Òdoo now. I will dig into it but your answer was 100% correct.

Thanks!

Thanks a lot brother!