Install Odoo 10 on CentOS 7

The following commands run as the root user logged into a CentOS 7 (RHEL 7) based host will install the pre-req’s of Odoo 10 (latest nightly build) and then Odoo 10 itself.

Install and activate the EPEL Repository

yum install epel-release

Install, configure and start PostgreSQL DB Server

yum install -y postgresql-server
postgresql-setup initdb
systemctl enable postgresql
systemctl start postgresql

Install and activate the Odoo 10 Nightly Repository

yum install yum-utils
yum-config-manager --add-repo=https://nightly.odoo.com/10.0/nightly/rpm/odoo.repo

Install Odoo 10 itself

yum -y install odoo

After the first start of Odoo, you can configure your Admin Password in the /etc/odoo/openerp-server.conf file:

admin_passwd = PASSWORDTEXT

Restart Odoo after configuring the admin password:

systemctl restart odoo

This will deliver the basic and initial Odoo Install available on the local server.

FYI and regards,
Richard.

This entry was posted in Network Presence, Sales and tagged , , . Bookmark the permalink.