{"id":4722,"date":"2014-09-25T15:46:42","date_gmt":"2014-09-25T20:46:42","guid":{"rendered":"https:\/\/secure.rosehosting.com\/blog\/?p=4722"},"modified":"2022-06-03T03:46:39","modified_gmt":"2022-06-03T08:46:39","slug":"install-odoo-8-on-a-centos-7-vps","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/install-odoo-8-on-a-centos-7-vps\/","title":{"rendered":"Install Odoo 8 on a CentOS 7 VPS"},"content":{"rendered":"<div id=\"bsf_rt_marker\"><\/div><p><img decoding=\"async\" class=\"alignleft size-full wp-image-4740\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/09\/odoo.png\" alt=\"odoo\" width=\"300\" height=\"97\" \/>Odoo is a suite of business applications, organized in 6 groups: front-end applications, sales management applications, business operations applications, marketing applications, human resources and productivity applications.<br \/>\nThe installation of Odoo 8 on a <a title=\"CentOS 7 VPS\" href=\"https:\/\/www.rosehosting.com\/centos-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">CentOS 7 VPS<\/a> should take about ten minutes if you follow the very easy steps described below.<\/p>\n<p><!--more--><\/p>\n<p>Remove MariaDB from your server:<\/p>\n<pre>yum remove mariadb mariadb-server\n<\/pre>\n<p>Ensure that your yum package repository is up to date and all installed packages have been upgraded with the latest bug fixes and security patches using the following commands:<\/p>\n<pre>yum clean all\nyum update<\/pre>\n<p>Install PostgreSQL and PHP PostgreSQL extension:<\/p>\n<pre>yum install postgresql-libs postgresql-server postgresql php-pgsql php-gd<\/pre>\n<p>Install all prerequisite packages using the following command:<\/p>\n<pre>yum install babel python-devel libxslt-python pyparsing python-dateutil python-decorator python-imaging python-jinja2 python-ldap python-lxml python-mako python-psycopg2 python-reportlab python-requests python-werkzeug python-yaml python-docutils  python-matplotlib python-unittest2.noarch python-babel python-gevent pygtk2 glade3 pytz libxslt-devel bzr automake gcc gcc-c++ byacc kernel-headers<\/pre>\n<p>Restart the Apache web server:<\/p>\n<pre>systemctl restart httpd.service<\/pre>\n<p>Initialize the PostgreSQL database cluster:<\/p>\n<pre>postgresql-setup initdb<\/pre>\n<p>Configure the PostgreSQL service to start automatically on server boot:<\/p>\n<pre>systemctl enable postgresql.service<\/pre>\n<p>Start PostgreSQL service and set a password for the &#8216;postgres&#8217; user:<\/p>\n<pre>systemctl start postgresql.service\nsu - postgres\npsql\n\\password postgres\n(Enter new password twice)\n\\q\nexit<\/pre>\n<p>Create new system user named &#8216;odoo&#8217;:<\/p>\n<pre>adduser odoo\npasswd odoo<\/pre>\n<p>Create &#8216;odoo&#8217; user in PostgreSQL using the following command:<\/p>\n<pre>su - postgres -c \"createuser --pwprompt --createdb --no-createrole --no-superuser odoo\"\n(Enter new 'odoo' user password twice)\n<\/pre>\n<p>Download the latest version of Odoo and extract it to the &#8216;\/opt&#8217; directory on your <a title=\"Linux VPS Hosting\" href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">virtual server<\/a>:<\/p>\n<pre>cd \/opt \nwget http:\/\/nightly.odoo.com\/8.0\/nightly\/src\/odoo_8.0.latest.tar.gz\ntar -xvzf \/root\/odoo_8.0.latest.tar.gz\nmv odoo-8.* odoo\ncd odoo<\/pre>\n<p>Install Odoo 8:<\/p>\n<pre>python setup.py install\ncp openerp-server \/usr\/local\/bin\/odoo-server\nmkdir -p \/var\/log\/odoo\/\ntouch \/var\/log\/odoo\/odoo-server.log\nchown odoo \/var\/log\/odoo\/odoo-server.log\nchmod 644 \/var\/log\/odoo\/odoo-server.log<\/pre>\n<p>Give the &#8216;odoo&#8217; user permission to install new modules:<\/p>\n<pre>chown odoo -R \/usr\/lib\/python2.7\/site-packages\/odoo-8*\/openerp\/addons\/\n<\/pre>\n<p>Run the following commands:<\/p>\n<pre>vi ~odoo\/.bashrc\nexport LD_LIBRARY_PATH; LD_LIBRARY_PATH=\/usr\/local\/lib\nsource ~odoo\/.bashrc<\/pre>\n<p>Edit the &#8216;\/etc\/odoo-server.conf&#8217; configuration file and add the following lines:<\/p>\n<pre>[options]\n; This is the password that allows database operations:\n; admin_passwd = admin\ndb_host = localhost\ndb_port = 5432\ndb_user = odoo\ndb_password = False\naddons_path = \/usr\/lib\/python2.7\/site-packages\/odoo-8.0_20150306-py2.7.egg\/openerp\/addons\/\n#do not forget to change 'odoo-8.0_20150306-py2.7.egg' with the actual directory on your server\nlogfile = \/var\/log\/odoo\/odoo-server.log\nlog_level = error\n<\/pre>\n<p>Edit the &#8216;\/var\/lib\/pgsql\/data\/pg_hba.conf&#8217; configuration file and allow local access to PostgreSQL databases:<\/p>\n<pre>vi \/var\/lib\/pgsql\/data\/pg_hba.conf<\/pre>\n<pre># TYPE  DATABASE        USER            ADDRESS                 METHOD\n\n# \"local\" is for Unix domain socket connections only\nlocal   all             all                                     trust # changed from 'peer'\n# IPv4 local connections:\nhost    all             all             127.0.0.1\/32            trust # changed from 'ident'\n# IPv6 local connections:\nhost    all             all             ::1\/128                 trust # changed from 'ident'<\/pre>\n<p>Optionally, if you want to allow remote access to PostgreSQL databases, add the following line to &#8216;\/var\/lib\/pgsql\/data\/pg_hba.conf&#8217; configuration file:<\/p>\n<pre>host    all             all             0.0.0.0\/0               md5<\/pre>\n<p>Check the PostgreSQL server encoding:<\/p>\n<pre>su - postgres\npsql\npostgres=# \\l\n                             List of databases\n   Name    |  Owner   | Encoding  | Collate | Ctype |   Access privileges\n-----------+----------+-----------+---------+-------+-----------------------\n postgres  | postgres | SQL_ASCII | C       | C     |\n template0 | postgres | SQL_ASCII | C       | C     | =c\/postgres          +\n           |          |           |         |       | postgres=CTc\/postgres\n template1 | postgres | SQL_ASCII | C       | C     | =c\/postgres          +\n           |          |           |         |       | postgres=CTc\/postgres<\/pre>\n<p>To change the template1 encoding to UTF8, run the following commands:<\/p>\n<pre>update pg_database set datallowconn = TRUE where datname = 'template0';\n\\c template0\nupdate pg_database set datistemplate = FALSE where datname = 'template1';\ndrop database template1;\ncreate database template1 with template = template0 encoding = 'UTF8';\nupdate pg_database set datistemplate = TRUE where datname = 'template1';\n\\c template1\nupdate pg_database set datallowconn = FALSE where datname = 'template0';\n\\q<\/pre>\n<p>Restart the PostgreSQL server:<\/p>\n<pre>systemctl restart postgresql.service<\/pre>\n<p>To start Odoo automatically when the server is booted, add a systemd unit file with the following content:<\/p>\n<pre>vi \/usr\/lib\/systemd\/system\/odoo.service<\/pre>\n<pre>[Unit]\nDescription=Advanced OpenSource ERP and CRM server\nRequires=postgresql.service\nAfter=postgresql.service\n[Install]\nAlias=odoo.service\n[Service]\nType=simple\nPermissionsStartOnly=true\nEnvironmentFile=-\/etc\/conf.d\/odoo-server\nUser=odoo\nGroup=odoo\nSyslogIdentifier=odoo-server\nPIDFile=\/run\/odoo\/odoo-server.pid\nExecStartPre=\/usr\/bin\/install -d -m755 -o odoo -g odoo \/run\/odoo\nExecStart=\/usr\/local\/bin\/odoo-server -c \/etc\/odoo-server.conf --pid=\/run\/odoo\/odoo-server.pid --syslog $OPENERP_ARGS\nExecStop=\/bin\/kill $MAINPID\n[Install]\nWantedBy=multi-user.target<\/pre>\n<p>The last thing left to do is enabling and starting up the service:<\/p>\n<pre>systemctl enable odoo.service<\/pre>\n<p>Start Odoo:<\/p>\n<pre>systemctl start odoo.service<\/pre>\n<p>Open http:\/\/your-server-IP:8069\/web\/database\/manager and create a new database.<\/p>\n<p><a href=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/09\/odoo-vps.png\"><img decoding=\"async\" class=\"alignnone size-medium wp-image-4741\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/09\/odoo-vps-300x145.png\" alt=\"odoo vps\" width=\"300\" height=\"145\" srcset=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/09\/odoo-vps-300x145.png 300w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/09\/odoo-vps-600x290.png 600w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/09\/odoo-vps.png 859w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/p>\n<p>Then, you should be able to log in to the administrator back-end at http:\/\/server_IP:8069 using &#8216;admin&#8217; as username and your newly created password. To reset your &#8216;admin&#8217; password, navigate to:<\/p>\n<pre>Administrator -&gt; Preferences -&gt; Change password<\/pre>\n<p>That is it. Odoo 8 has been successfully installed on your CentOS 7 VPS.<\/p>\n<p>Of course you don\u2019t have to do any of this if you use one of our <a title=\"Linux VPS Hosting\" href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">Linux VPS Hosting<\/a> services, in which case you can simply ask our expert Linux admins to install Odoo for you. They are available 24&#215;7 and will take care of your request immediately. You might also want to read our guide on <a href=\"https:\/\/www.rosehosting.com\/blog\/how-to-install-odoo-13-on-a-centos-8-server\/\">How to Install Odoo 13 on a CentOS 8 Server<\/a>.<\/p>\n<p><strong><span style=\"color: #ff0000;\">PS<\/span>.<\/strong> If you liked this post please share it with your friends on the social networks using the buttons on the left or simply leave a reply below. Thanks.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Odoo is a suite of business applications, organized in 6 groups: front-end applications, sales management applications, business operations applications, marketing &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"Install Odoo 8 on a CentOS 7 VPS\" class=\"read-more button\" href=\"https:\/\/www.rosehosting.com\/blog\/install-odoo-8-on-a-centos-7-vps\/#more-4722\" aria-label=\"Read more about Install Odoo 8 on a CentOS 7 VPS\">Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":4740,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1699,1710,1711,13],"tags":[572,571,464],"class_list":["post-4722","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-centos","category-cms-crm-erp","category-e-commerce","category-tutorials","tag-install-odoo-8","tag-install-odoo-on-centos-7","tag-odoo","generate-columns","tablet-grid-50","mobile-grid-100","grid-parent","grid-33"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.4 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Install Odoo 8 on a CentOS 7 VPS | RoseHosting<\/title>\n<meta name=\"description\" content=\"Install Odoo 8 on a CentOS 7 VPS | RoseHosting\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.rosehosting.com\/blog\/install-odoo-8-on-a-centos-7-vps\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Install Odoo 8 on a CentOS 7 VPS\" \/>\n<meta property=\"og:description\" content=\"Install Odoo 8 on a CentOS 7 VPS | RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/install-odoo-8-on-a-centos-7-vps\/\" \/>\n<meta property=\"og:site_name\" content=\"RoseHosting\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/RoseHosting\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/rosehosting.helpdesk\" \/>\n<meta property=\"article:published_time\" content=\"2014-09-25T20:46:42+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-06-03T08:46:39+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/09\/odoo.png\" \/>\n\t<meta property=\"og:image:width\" content=\"300\" \/>\n\t<meta property=\"og:image:height\" content=\"97\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Jeff Wilson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:site\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jeff Wilson\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-odoo-8-on-a-centos-7-vps\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-odoo-8-on-a-centos-7-vps\\\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/person\\\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"Install Odoo 8 on a CentOS 7 VPS\",\"datePublished\":\"2014-09-25T20:46:42+00:00\",\"dateModified\":\"2022-06-03T08:46:39+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-odoo-8-on-a-centos-7-vps\\\/\"},\"wordCount\":437,\"commentCount\":65,\"publisher\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-odoo-8-on-a-centos-7-vps\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2014\\\/09\\\/odoo.png\",\"keywords\":[\"install odoo 8\",\"install odoo on centos 7\",\"odoo\"],\"articleSection\":[\"CentOS\",\"CMS, CRM, ERP\",\"E-Commerce\",\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-odoo-8-on-a-centos-7-vps\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-odoo-8-on-a-centos-7-vps\\\/\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-odoo-8-on-a-centos-7-vps\\\/\",\"name\":\"Install Odoo 8 on a CentOS 7 VPS | RoseHosting\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-odoo-8-on-a-centos-7-vps\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-odoo-8-on-a-centos-7-vps\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2014\\\/09\\\/odoo.png\",\"datePublished\":\"2014-09-25T20:46:42+00:00\",\"dateModified\":\"2022-06-03T08:46:39+00:00\",\"description\":\"Install Odoo 8 on a CentOS 7 VPS | RoseHosting\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-odoo-8-on-a-centos-7-vps\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-odoo-8-on-a-centos-7-vps\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-odoo-8-on-a-centos-7-vps\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2014\\\/09\\\/odoo.png\",\"contentUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2014\\\/09\\\/odoo.png\",\"width\":300,\"height\":97,\"caption\":\"odoo\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-odoo-8-on-a-centos-7-vps\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Install Odoo 8 on a CentOS 7 VPS\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\",\"name\":\"RoseHosting.com\",\"description\":\"Premium Linux Tutorials Since 2001\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\",\"name\":\"RoseHosting\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/android-chrome-192x192-1.png\",\"contentUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/android-chrome-192x192-1.png\",\"width\":192,\"height\":192,\"caption\":\"RoseHosting\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/RoseHosting\",\"https:\\\/\\\/x.com\\\/rosehosting\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/rosehosting\\\/\"],\"description\":\"RoseHosting is a leading Linux hosting provider, serving thousands of clients world-wide since 2001.\",\"email\":\"info@rosehosting.com\",\"telephone\":\"(314) 275-0414\",\"legalName\":\"Rose Web Services LLC\",\"foundingDate\":\"2001-04-02\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"11\",\"maxValue\":\"50\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/person\\\/7ce77a842fa6a9a7f8efa186f2353713\",\"name\":\"Jeff Wilson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"caption\":\"Jeff Wilson\"},\"description\":\"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.\",\"sameAs\":[\"https:\\\/\\\/www.rosehosting.com\",\"https:\\\/\\\/www.facebook.com\\\/rosehosting.helpdesk\"],\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/author\\\/jwilson\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Install Odoo 8 on a CentOS 7 VPS | RoseHosting","description":"Install Odoo 8 on a CentOS 7 VPS | RoseHosting","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.rosehosting.com\/blog\/install-odoo-8-on-a-centos-7-vps\/","og_locale":"en_US","og_type":"article","og_title":"Install Odoo 8 on a CentOS 7 VPS","og_description":"Install Odoo 8 on a CentOS 7 VPS | RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/install-odoo-8-on-a-centos-7-vps\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2014-09-25T20:46:42+00:00","article_modified_time":"2022-06-03T08:46:39+00:00","og_image":[{"width":300,"height":97,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/09\/odoo.png","type":"image\/png"}],"author":"Jeff Wilson","twitter_card":"summary_large_image","twitter_creator":"@rosehosting","twitter_site":"@rosehosting","twitter_misc":{"Written by":"Jeff Wilson","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.rosehosting.com\/blog\/install-odoo-8-on-a-centos-7-vps\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-odoo-8-on-a-centos-7-vps\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"Install Odoo 8 on a CentOS 7 VPS","datePublished":"2014-09-25T20:46:42+00:00","dateModified":"2022-06-03T08:46:39+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-odoo-8-on-a-centos-7-vps\/"},"wordCount":437,"commentCount":65,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-odoo-8-on-a-centos-7-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/09\/odoo.png","keywords":["install odoo 8","install odoo on centos 7","odoo"],"articleSection":["CentOS","CMS, CRM, ERP","E-Commerce","Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/install-odoo-8-on-a-centos-7-vps\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/install-odoo-8-on-a-centos-7-vps\/","url":"https:\/\/www.rosehosting.com\/blog\/install-odoo-8-on-a-centos-7-vps\/","name":"Install Odoo 8 on a CentOS 7 VPS | RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-odoo-8-on-a-centos-7-vps\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-odoo-8-on-a-centos-7-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/09\/odoo.png","datePublished":"2014-09-25T20:46:42+00:00","dateModified":"2022-06-03T08:46:39+00:00","description":"Install Odoo 8 on a CentOS 7 VPS | RoseHosting","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-odoo-8-on-a-centos-7-vps\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/install-odoo-8-on-a-centos-7-vps\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/install-odoo-8-on-a-centos-7-vps\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/09\/odoo.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/09\/odoo.png","width":300,"height":97,"caption":"odoo"},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/install-odoo-8-on-a-centos-7-vps\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Install Odoo 8 on a CentOS 7 VPS"}]},{"@type":"WebSite","@id":"https:\/\/www.rosehosting.com\/blog\/#website","url":"https:\/\/www.rosehosting.com\/blog\/","name":"RoseHosting.com","description":"Premium Linux Tutorials Since 2001","publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.rosehosting.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.rosehosting.com\/blog\/#organization","name":"RoseHosting","url":"https:\/\/www.rosehosting.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","width":192,"height":192,"caption":"RoseHosting"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/RoseHosting","https:\/\/x.com\/rosehosting","https:\/\/www.linkedin.com\/in\/rosehosting\/"],"description":"RoseHosting is a leading Linux hosting provider, serving thousands of clients world-wide since 2001.","email":"info@rosehosting.com","telephone":"(314) 275-0414","legalName":"Rose Web Services LLC","foundingDate":"2001-04-02","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"11","maxValue":"50"}},{"@type":"Person","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713","name":"Jeff Wilson","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","caption":"Jeff Wilson"},"description":"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.","sameAs":["https:\/\/www.rosehosting.com","https:\/\/www.facebook.com\/rosehosting.helpdesk"],"url":"https:\/\/www.rosehosting.com\/blog\/author\/jwilson\/"}]}},"_links":{"self":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/4722","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/comments?post=4722"}],"version-history":[{"count":2,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/4722\/revisions"}],"predecessor-version":[{"id":36644,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/4722\/revisions\/36644"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/4740"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=4722"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=4722"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=4722"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}