{"id":1478,"date":"2013-03-20T12:40:44","date_gmt":"2013-03-20T12:40:44","guid":{"rendered":"http:\/\/webkul.com\/blog\/?p=1478"},"modified":"2021-07-16T11:53:37","modified_gmt":"2021-07-16T11:53:37","slug":"installation-of-openerp-7-0-on-ubuntu","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/installation-of-openerp-7-0-on-ubuntu\/","title":{"rendered":"Installation of OpenERP 7.0 on Ubuntu"},"content":{"rendered":"\n<h3 class=\"wp-block-heading\">Step 1. Build your server<\/h3>\n\n\n\n<p>install the openssh-server&nbsp;package (so we can connect to it remotely) and denyhosts&nbsp;to add a degree of brute-force attack protection<\/p>\n\n\n\n<p><em>sudo apt-get install openssh-server denyhosts<\/em><\/p>\n\n\n\n<p>Now make sure your server has all the latest versions &amp; patches by doing an update:<\/p>\n\n\n\n<p><em>sudo apt-get update<\/em><code><em><br>\n<\/em><\/code><\/p>\n\n\n\n<p><em>sudo apt-get dist-upgrade<\/em><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 2. Create the OpenERP user that will own and run the application<\/h3>\n\n\n\n<p><em>sudo adduser &#8211;system &#8211;home=\/opt\/openerp &#8211;group openerp<\/em><\/p>\n\n\n\n<p>Now run command<\/p>\n\n\n\n<p><em>sudo su &#8211; openerp -s \/bin\/bash<\/em><\/p>\n\n\n\n<p>This will change your current terminal login to openerp user.<\/p>\n\n\n\n<p>Now you can leave the openerp user\u2019s shell by typing <em>exit<\/em>.<code><br>\n<\/code><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 3. Install and configure the database server ( PostgreSQL )<\/h3>\n\n\n\n<p><em>sudo apt-get install postgresql<\/em><\/p>\n\n\n\n<p>First change to the postgres user by typing<\/p>\n\n\n\n<p><em>sudo su &#8211; postgres<\/em><\/p>\n\n\n\n<p>Now create a new database user.This is so OpenERP has access rights to connect to PostgreSQL and to create and drop databases. Remember what your choice of password is here you will need it later on:<\/p>\n\n\n\n<p><em>createuser &#8211;createdb &#8211;username postgres &#8211;no-createrole &#8211;no-superuser &#8211;pwprompt openerp<\/em><\/p>\n\n\n\n<p><em>Enter password for new role: ********<\/em><\/p>\n\n\n\n<p><em>Enter it again: ********<\/em><\/p>\n\n\n\n<p>Finally exit from the postgres user account:<\/p>\n\n\n\n<p><em>exit<\/em><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 4. Install the necessary Python libraries for the server<\/h3>\n\n\n\n<p><em>sudo apt-get install python-dateutil python-docutils python-feedparser python-gdata \\<\/em><br><em>python-jinja2 python-ldap python-libxslt1 python-lxml python-mako python-mock python-openid \\<\/em><br><em>python-psycopg2 python-psutil python-pybabel python-pychart python-pydot python-pyparsing \\<\/em><br><em>python-reportlab python-simplejson python-tz python-unittest2 python-vatnumber python-vobject \\<\/em><br><em>python-webdav python-werkzeug python-xlwt python-yaml python-zsi<\/em><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 5. Install the OpenERP server<\/h3>\n\n\n\n<p>Download the latest version of the application:<\/p>\n\n\n\n<p><em>wget http:\/\/nightly.openerp.com\/7.0\/nightly\/src\/openerp-7.0-latest.tar.gz<\/em><\/p>\n\n\n\n<p>Now install the code where we need it<\/p>\n\n\n\n<p><em>cd \/opt\/openerp<\/em><\/p>\n\n\n\n<p><em>sudo tar xvf ~\/openerp-7.0-latest.tar.gz<\/em><\/p>\n\n\n\n<p>(In place of &#8216;~&#8217; write the path where you have downloaded openerp latest version. If it is root then above commant is right.)<\/p>\n\n\n\n<p>Next we need to change the ownership of all the the files to the OpenERP user and group we created earlier.<\/p>\n\n\n\n<p><em>sudo chown -R openerp: *<\/em><\/p>\n\n\n\n<p>And finally, the way I have done this is to copy the server directory to something with a simpler name so that the configuration files and boot scripts don\u2019t need constant editing<\/p>\n\n\n\n<p><em>sudo cp -a openerp-7.0 server<\/em><\/p>\n\n\n\n<p>(name&nbsp;openerp-7.0 may differ. Just type the name of folder you untar under \/opt\/openerp)<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 6. Configuring the OpenERP application<\/h3>\n\n\n\n<p>The default configuration file for the server (in&nbsp;<code>\/opt\/openerp\/server\/install\/<\/code>) is actually very minimal and will, with only one small change work fine so we\u2019ll simply copy that file to where we need it and change it\u2019s ownership and permissions:<\/p>\n\n\n\n<p><em>sudo cp \/opt\/openerp\/server\/install\/openerp-server.conf \/etc\/<\/em><\/p>\n\n\n\n<p><em>sudo chown openerp: \/etc\/openerp-server.conf<\/em><\/p>\n\n\n\n<p><em>sudo chmod 640 \/etc\/openerp-server.conf<\/em><\/p>\n\n\n\n<p>The above commands make the file owned and writeable only by the openerp user and group and only readable by openerp and root.<\/p>\n\n\n\n<p>Now open file openerp-server<\/p>\n\n\n\n<p><em>sudo nano \/etc\/openerp-server.conf<\/em><\/p>\n\n\n\n<p>Toward to the top of the file change the line db_password = False&nbsp;to the same password you used back in step 3.<\/p>\n\n\n\n<p>Also add a line at the end of same file<\/p>\n\n\n\n<p><em>logfile = \/var\/log\/openerp\/openerp-server.log<br><\/em><\/p>\n\n\n\n<p>Once the configuration file is edited and saved, you can start the server just to check if it actually runs.<\/p>\n\n\n\n<p><em>sudo su &#8211; openerp -s \/bin\/bash<\/em><\/p>\n\n\n\n<p><em>\/opt\/openerp\/server\/openerp-server<\/em><\/p>\n\n\n\n<p>If you end up with a few lines eventually saying OpenERP is running and waiting for connections then you are all set.<\/p>\n\n\n\n<p>enter &#8220;<em>ctrl+c<\/em>&#8221;&nbsp;to stop the server and then &#8220;<em>exit<\/em>&#8221;&nbsp;to leave the openerp user account and go back to your own shell.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 7. Installing the boot script<\/h3>\n\n\n\n<p>For the final step we need to install a script which will be used to start-up and shut down the server automatically and also run the application as the correct user.There is a script you can use in&nbsp;<code>\/opt\/openerp\/server\/install\/openerp-server.init<\/code>&nbsp;but this will need a few small modifications to work with the system installed the way I have described above.<\/p>\n\n\n\n<p>Now we will make a file in \/etc\/init.d with name openerp-server.So type:<\/p>\n\n\n\n<p><em>sudo nano \/etc\/init.d\/openerp-server<\/em><\/p>\n\n\n\n<p>This will open an empty file openerp-server.Copy below code<\/p>\n\n\n\n<pre class=\"wp-block-preformatted brush:js\">#!\/bin\/sh\n\n### BEGIN INIT INFO\n# Provides:             openerp-server\n# Required-Start:       $remote_fs $syslog\n# Required-Stop:        $remote_fs $syslog\n# Should-Start:         $network\n# Should-Stop:          $network\n# Default-Start:        2 3 4 5\n# Default-Stop:         0 1 6\n# Short-Description:    Enterprise Resource Management software\n# Description:          Open ERP is a complete ERP and CRM software.\n### END INIT INFO\n\nPATH=\/bin:\/sbin:\/usr\/bin\nDAEMON=\/opt\/openerp\/server\/openerp-server\nNAME=openerp-server\nDESC=openerp-server\n\n# Specify the user name (Default: openerp).\nUSER=openerp\n\n# Specify an alternate config file (Default: \/etc\/openerp-server.conf).\nCONFIGFILE=\"\/etc\/openerp-server.conf\"\n\n# pidfile\nPIDFILE=\/var\/run\/$NAME.pid\n\n# Additional options that are passed to the Daemon.\nDAEMON_OPTS=\"-c $CONFIGFILE\"\n\n[ -x $DAEMON ] || exit 0\n[ -f $CONFIGFILE ] || exit 0\n\ncheckpid() {\n    [ -f $PIDFILE ] || return 1\n    pid=`cat $PIDFILE`\n    [ -d \/proc\/$pid ] &amp;&amp; return 0\n    return 1\n}\n\ncase \"${1}\" in\n        start)\n                echo -n \"Starting ${DESC}: \"\n\n                start-stop-daemon --start --quiet --pidfile ${PIDFILE} \\\n                        --chuid ${USER} --background --make-pidfile \\\n                        --exec ${DAEMON} -- ${DAEMON_OPTS}\n\n                echo \"${NAME}.\"\n                ;;\n\n        stop)\n                echo -n \"Stopping ${DESC}: \"\n\n                start-stop-daemon --stop --quiet --pidfile ${PIDFILE} \\\n                        --oknodo\n\n                echo \"${NAME}.\"\n                ;;\n\n        restart|force-reload)\n                echo -n \"Restarting ${DESC}: \"\n\n                start-stop-daemon --stop --quiet --pidfile ${PIDFILE} \\\n                        --oknodo\n\n                sleep 1\n\n                start-stop-daemon --start --quiet --pidfile ${PIDFILE} \\\n                        --chuid ${USER} --background --make-pidfile \\\n                        --exec ${DAEMON} -- ${DAEMON_OPTS}\n\n                echo \"${NAME}.\"\n                ;;\n\n        *)\n                N=\/etc\/init.d\/${NAME}\n                echo \"Usage: ${NAME} {start|stop|restart|force-reload}\" &gt;&amp;2\n                exit 1\n                ;;\nesac\n\nexit 0<\/pre>\n\n\n\n<p>to&nbsp;<em>openerp-server file and save this file.<\/em>Once it is in the right place you will need to make it executable and owned by root:<\/p>\n\n\n\n<p><em>sudo chmod 755 \/etc\/init.d\/openerp-server<\/em><\/p>\n\n\n\n<p><em>sudo chown root: \/etc\/init.d\/openerp-server<\/em><\/p>\n\n\n\n<p>In the configuration file there\u2019s an entry for the server\u2019s log file. We need to create that directory first so that the server has somewhere to log to and also we must make it writeable by the openerp user:<\/p>\n\n\n\n<p><em>sudo mkdir \/var\/log\/openerp<\/em><\/p>\n\n\n\n<p><em>sudo chown openerp:root \/var\/log\/openerp<\/em><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 8. Testing the server<\/h3>\n\n\n\n<p>To start the OpenERP server type:<\/p>\n\n\n\n<p><em>sudo \/etc\/init.d\/openerp-server start<\/em><\/p>\n\n\n\n<p>If everything above seems to be working OK then your server will be started and you can check it here in your browser:<\/p>\n\n\n\n<p>http:\/\/IP_or_domain.com:8069<\/p>\n\n\n\n<p>Now it\u2019s time to make sure the server stops properly too:<\/p>\n\n\n\n<p><em>sudo \/etc\/init.d\/openerp-server stop<\/em><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Step 1. Build your server install the openssh-server&nbsp;package (so we can connect to it remotely) and denyhosts&nbsp;to add a degree of brute-force attack protection sudo apt-get install openssh-server denyhosts Now make sure your server has all the latest versions &amp; patches by doing an update: sudo apt-get update sudo apt-get dist-upgrade Step 2. Create the <a href=\"https:\/\/webkul.com\/blog\/installation-of-openerp-7-0-on-ubuntu\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":8,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[166,10],"tags":[2063,266],"class_list":["post-1478","post","type-post","status-publish","format-standard","hentry","category-openerp","category-ubuntu","tag-openerp","tag-ubuntu-2"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Installation of OpenERP 7.0 on Ubuntu - Webkul Blog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/webkul.com\/blog\/installation-of-openerp-7-0-on-ubuntu\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Installation of OpenERP 7.0 on Ubuntu - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"Step 1. Build your server install the openssh-server&nbsp;package (so we can connect to it remotely) and denyhosts&nbsp;to add a degree of brute-force attack protection sudo apt-get install openssh-server denyhosts Now make sure your server has all the latest versions &amp; patches by doing an update: sudo apt-get update sudo apt-get dist-upgrade Step 2. Create the [...]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/installation-of-openerp-7-0-on-ubuntu\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:published_time\" content=\"2013-03-20T12:40:44+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-07-16T11:53:37+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-og.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"630\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Vardan Agarwal\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webkul\" \/>\n<meta name=\"twitter:site\" content=\"@webkul\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Vardan Agarwal\" \/>\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:\/\/webkul.com\/blog\/installation-of-openerp-7-0-on-ubuntu\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/installation-of-openerp-7-0-on-ubuntu\/\"},\"author\":{\"name\":\"Vardan Agarwal\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/5f982a018c197420cffec0b4ae530f59\"},\"headline\":\"Installation of OpenERP 7.0 on Ubuntu\",\"datePublished\":\"2013-03-20T12:40:44+00:00\",\"dateModified\":\"2021-07-16T11:53:37+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/installation-of-openerp-7-0-on-ubuntu\/\"},\"wordCount\":846,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"keywords\":[\"OpenERP\",\"ubuntu\"],\"articleSection\":[\"OpenERP\",\"Ubuntu\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/installation-of-openerp-7-0-on-ubuntu\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/installation-of-openerp-7-0-on-ubuntu\/\",\"url\":\"https:\/\/webkul.com\/blog\/installation-of-openerp-7-0-on-ubuntu\/\",\"name\":\"Installation of OpenERP 7.0 on Ubuntu - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"datePublished\":\"2013-03-20T12:40:44+00:00\",\"dateModified\":\"2021-07-16T11:53:37+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/installation-of-openerp-7-0-on-ubuntu\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/installation-of-openerp-7-0-on-ubuntu\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/installation-of-openerp-7-0-on-ubuntu\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Installation of OpenERP 7.0 on Ubuntu\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webkul.com\/blog\/#website\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"name\":\"Webkul Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webkul.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webkul.com\/blog\/#organization\",\"name\":\"WebKul Software Private Limited\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"width\":380,\"height\":380,\"caption\":\"WebKul Software Private Limited\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webkul\/\",\"https:\/\/x.com\/webkul\",\"https:\/\/www.instagram.com\/webkul\/\",\"https:\/\/www.linkedin.com\/company\/webkul\",\"https:\/\/www.youtube.com\/user\/webkul\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/5f982a018c197420cffec0b4ae530f59\",\"name\":\"Vardan Agarwal\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/314fb9fd9069a455e7cda4268e37a68d5e4598bce17d438b2e36a221e35376e7?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/314fb9fd9069a455e7cda4268e37a68d5e4598bce17d438b2e36a221e35376e7?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Vardan Agarwal\"},\"sameAs\":[\"http:\/\/webkul.com\"],\"url\":\"https:\/\/webkul.com\/blog\/author\/vardan\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Installation of OpenERP 7.0 on Ubuntu - Webkul Blog","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:\/\/webkul.com\/blog\/installation-of-openerp-7-0-on-ubuntu\/","og_locale":"en_US","og_type":"article","og_title":"Installation of OpenERP 7.0 on Ubuntu - Webkul Blog","og_description":"Step 1. Build your server install the openssh-server&nbsp;package (so we can connect to it remotely) and denyhosts&nbsp;to add a degree of brute-force attack protection sudo apt-get install openssh-server denyhosts Now make sure your server has all the latest versions &amp; patches by doing an update: sudo apt-get update sudo apt-get dist-upgrade Step 2. Create the [...]","og_url":"https:\/\/webkul.com\/blog\/installation-of-openerp-7-0-on-ubuntu\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2013-03-20T12:40:44+00:00","article_modified_time":"2021-07-16T11:53:37+00:00","og_image":[{"width":1200,"height":630,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-og.png","type":"image\/png"}],"author":"Vardan Agarwal","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Vardan Agarwal","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/installation-of-openerp-7-0-on-ubuntu\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/installation-of-openerp-7-0-on-ubuntu\/"},"author":{"name":"Vardan Agarwal","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/5f982a018c197420cffec0b4ae530f59"},"headline":"Installation of OpenERP 7.0 on Ubuntu","datePublished":"2013-03-20T12:40:44+00:00","dateModified":"2021-07-16T11:53:37+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/installation-of-openerp-7-0-on-ubuntu\/"},"wordCount":846,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"keywords":["OpenERP","ubuntu"],"articleSection":["OpenERP","Ubuntu"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/installation-of-openerp-7-0-on-ubuntu\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/installation-of-openerp-7-0-on-ubuntu\/","url":"https:\/\/webkul.com\/blog\/installation-of-openerp-7-0-on-ubuntu\/","name":"Installation of OpenERP 7.0 on Ubuntu - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"datePublished":"2013-03-20T12:40:44+00:00","dateModified":"2021-07-16T11:53:37+00:00","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/installation-of-openerp-7-0-on-ubuntu\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/installation-of-openerp-7-0-on-ubuntu\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/installation-of-openerp-7-0-on-ubuntu\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Installation of OpenERP 7.0 on Ubuntu"}]},{"@type":"WebSite","@id":"https:\/\/webkul.com\/blog\/#website","url":"https:\/\/webkul.com\/blog\/","name":"Webkul Blog","description":"","publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webkul.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webkul.com\/blog\/#organization","name":"WebKul Software Private Limited","url":"https:\/\/webkul.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","width":380,"height":380,"caption":"WebKul Software Private Limited"},"image":{"@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webkul\/","https:\/\/x.com\/webkul","https:\/\/www.instagram.com\/webkul\/","https:\/\/www.linkedin.com\/company\/webkul","https:\/\/www.youtube.com\/user\/webkul\/"]},{"@type":"Person","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/5f982a018c197420cffec0b4ae530f59","name":"Vardan Agarwal","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/314fb9fd9069a455e7cda4268e37a68d5e4598bce17d438b2e36a221e35376e7?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/314fb9fd9069a455e7cda4268e37a68d5e4598bce17d438b2e36a221e35376e7?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Vardan Agarwal"},"sameAs":["http:\/\/webkul.com"],"url":"https:\/\/webkul.com\/blog\/author\/vardan\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/1478","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/users\/8"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=1478"}],"version-history":[{"count":6,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/1478\/revisions"}],"predecessor-version":[{"id":296492,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/1478\/revisions\/296492"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=1478"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=1478"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=1478"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}