It looks like you're new here. If you want to get involved, click one of these buttons!
Sign In RegisterIt looks like you're new here. If you want to get involved, click one of these buttons!
Howdy, Stranger!
It looks like you've been lurking for a while.
If you register, we also will remember what you have read and notify you about new comments. You will also be able to participate in discussions.
So if you'd like to get involved, register for an account, it'll only take you a minute!
yum remove httpd sendmail bind -y
yum install epel-release -y
yum update -y
yum install postgresql-server -y
su postgres
/usr/bin/initdb -E UTF8 -D /var/lib/pgsql/data -U postgres
exit
systemctl start postgresql
systemctl enable postgresql
nano /etc/yum.repos.d/odoo.repo
[odoo-nightly]Install Odoo:
name=Odoo Nightly repository
baseurl=http://nightly.odoo.com/9.0/nightly/rpm/
enabled=1
gpgcheck=1
gpgkey=https://nightly.odoo.com/odoo.key
yum install odoo -y
nano /etc/odoo/openerp-server.conf
admin_passwd = Your_passwordAfter these changes we are now ready to start our Odoo instance and enable its start-up:
systemctl start odoo
systemctl enable odoo