This question has been flagged
1 Reply
2938 Views

I have OpenERP installed sucessfuly at http://23.239.28.158:8069/ and my domain PrintXinc.com goes to http://23.239.28.158. How do I set it up so that the Odoo website is shown?

Avatar
Discard
Author Best Answer

Solved. This worked great (provided you are not running apache, etc. web service). Install is now at domain PrintXinc.com

Run Odoo from port 80 instead of 8069

I am using Ubuntu 14.04 LTS on my Linode VPS system with Odoo (Open ERP v8).

  1. Go to terminal open rc.local file. rc.local file reside in etc folder.

    sudo gedit /etc/rc.local

  2. Paste this command on rc.local file and save

    iptables -t nat -A PREROUTING -p tcp --dport 80 -j REDIRECT --to-port 8069

  3. Reboot Ubuntu

    sudo reboot

  4. After a successful restart of system, you can access Odoo (OpenERP) from your local or public ip (with default port 80)

http://pulse7.net/openerp/run-odoo-port-80-instead-8069/

Avatar
Discard