Hello everyone, this tutorial is about how to install Odoo in CentOS 7 (that's what we know about OpenERP). Are you thinking of installing a good ERP (Enterprise resource planning) software for your business? So OpenERP is the best program you're looking for, because it's a free open source software that provides outstanding features for your business.
OpenERP is a free and open source traditional openerp (Enterprise resource Planning), which includes open source CRM, website building, e-commerce, project management, billing, POS, human resources, marketing, production, procurement management and other modules for increased efficiency and sales. Applications in Odoo can be used as standalone programs, and they can be seamlessly integrated, so you can install several programs to get a full-featured open source ERP.
So here are the steps to install OpenERP on your centos.
1. Installing PostgreSQL
First of all, we need to update the CentOS 7 package to ensure that it is the latest package, Patch and security update. To update our system, we will run the following command under the shell.
# Yum Clean All
# Yum Update
Now we're going to install PostgreSQL because OpenERP uses PostgreSQL as its database. To install it, we need to run the following command.
# yum Install PostgreSQL postgresql-server postgresql-libs
After the installation is complete, we need to initialize the database with the following command.
# Postgresql-setup Initdb
We then set up PostgreSQL to enable it to boot every time.
# Systemctl Enable PostgreSQL
# Systemctl Start PostgreSQL
Since we have not set the password for user "PostgreSQL", we now set it up.
# Su-postgres
$ psql
postgres=# \password Postgres
postgres=# \q
# exit
2. Set up Odoo Warehouse
After initializing the initialization of the database, we will add EPEL (additional packages for Enterprise Linux) to our CentOS. Odoo (or OpenERP) relies on the Python runtime environment and other packages that are not included in the standard warehouse. This allows us to add additional package warehouse support for Enterprise Linux to address the dependencies that Odoo needs. To complete the installation, we need to run the following command.
# yum Install Epel-release
Now, after installing Epel, we now use Yum-config-manager to add Odoo (OpenERP) to the warehouse.
# yum Install Yum-utils
# Yum-config-manager--add-repo=https://nightly.odoo.com/8.0/nightly/rpm/odoo.repo
3. Install Odoo 8 (OpenERP)
After adding Odoo 8 (OpenERP) to the warehouse in CentOS 7. We use the following command to install Odoo 8 (OpenERP).
# yum Install-y Odoo
The above command installs Odoo and the required dependent packages.
Now we use the following command to start the Odoo service after each boot.
# Systemctl Enable Odoo
# Systemctl Start Odoo
4. Turn on the firewall
Because Odoo uses 8069 ports, we need to allow remote access in the firewall. We use the following command to allow 8069 port access in the firewall.
# firewall-cmd--zone=public--add-port=8069/tcp--permanent
# Firewall-cmd--reload
5. Web interface
We have installed the latest Odoo 8 (OpenERP) in CentOS 7 and we can enter http://ip-address:8069 in the browser to access Odoo. Then, the first thing we need to do is create a new database and a new password. Note that the master password is ' admin ' by default. Next, we can enter the user name and password in the panel.
Summarize
Odoo 8 (OpenERP) is the best open source ERP program in the world. OpenERP is a complete ERP program for both business and company that is made up of many modules and we have installed it.
Free pick up brother even it education original Linux OPS engineer video/Detailed Linux tutorials, details Inquiry official website customer Service: http://www.itxdl.cn/linux/
or hooking up with Q2430675018.
Welcome to the Linux Communication Group 478068715
How to install OpenERP (Odoo) in CentOS 7.x