{"id":225,"date":"2017-09-27T03:54:11","date_gmt":"2017-09-27T08:54:11","guid":{"rendered":"https:\/\/linuxhostsupport.com\/blog\/?p=225"},"modified":"2024-04-29T03:07:55","modified_gmt":"2024-04-29T08:07:55","slug":"how-to-migrate-odoo-from-one-server-to-another","status":"publish","type":"post","link":"https:\/\/linuxhostsupport.com\/blog\/how-to-migrate-odoo-from-one-server-to-another\/","title":{"rendered":"How to Migrate Odoo from one Server to Another"},"content":{"rendered":"<div id=\"linux-1765421841\" class=\"linux-before-1st-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1339&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div><p>In this tutorial, we will show you how to completely migrate your Odoo installation, from one server to another. In this tutorial, an Ubuntu 16.04 server is used as both source and destination server. The migration is also possible between different Linux distributions. If this is the case, you can use one of our <a href=\"https:\/\/linuxhostsupport.com\/\">Linux Host Support Services<\/a>, and simply <a href=\"https:\/\/chat.linuxhostsupport.com\/index.php\/chat\/start\">ask our expert Linux admins<\/a> to do the migration for you.<\/p>\n<p><!--more--><\/p>\n<h3>Requirements:<\/h3>\n<ul>\n<li>SSH access on both, the source and destination server is required<\/li>\n<li><a href=\"https:\/\/www.python.org\/downloads\/\" target=\"_blank\" rel=\"noopener\">Python<\/a>, <a href=\"https:\/\/www.postgresql.org\/\" target=\"_blank\" rel=\"noopener\">PostgreSQL<\/a> and any additional dependencies like <a href=\"https:\/\/wkhtmltopdf.org\/\" target=\"_blank\" rel=\"noopener\">wkhtmltopdf<\/a>, should already be installed on the destination server before initiating the transfer<\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n<h2>1. Creating a backup on the source server<\/h2>\n<p>First, we will need a backup of your PostgreSQL database on your source server.<\/p>\n<p>Log in via SSH as the odoo user on your server:<\/p>\n<pre>su odoo_user<\/pre>\n<p>Now, navigate to your Odoo directory:<\/p>\n<pre>cd \/path\/to\/odoo<\/pre>\n<p>You can list the databases you have stored with the following command:<\/p>\n<pre>psql -l<\/pre>\n<p>You can export your odoo database by using the pg_dump command:<\/p>\n<pre>pg_dump dbname &gt; db_backup.sql<\/pre>\n<p>Where &#8220;db_name&#8221; is the name of the database you need to export and &#8220;db_backup.sql&#8221; will be the name of the exported database.<\/p>\n<p>Alternatively, if you don&#8217;t want to export your database through the command line interface, you can use some web-based GUI administration tools like phpPgAdmin or Adminer.<\/p>\n<p>You can also export your database through your Odoo Database Manager directly from your browser by opening the following URL:<\/p>\n<pre>http:\/\/your-odoo-domain\/web\/database\/manager<\/pre>\n<p>where &#8220;your-odoo-domain&#8221; is the name of your actual domain or your server IP address.<\/p>\n<p>You also need to copy your odoo init and configuration file to the current directory.\u00a0 For example:<\/p>\n<pre>cp \/etc\/init.d\/odoo-server .\r\ncp \/etc\/odoo-server.conf .<\/pre>\n<p>You can also open the odoo-server.conf file and check for any alternative custom addons location outside the odoo root directory. If there is, you should copy these addons as well to our current directory:<\/p>\n<p>cp \/path\/to\/odoo\/addons .<\/p>\n<p>Now, that we have everything we need in one place (make sure again that you are inside your Odoo directory on your server), we can create an archive of all these files with the following command:<\/p>\n<pre>tar -czf odoo_backup.tgz *\r\n<\/pre>\n<h2>2. Transfer the backup<\/h2>\n<p>Before you transfer the backup we have made, first, you must log to your destination server and create a new user there:<\/p>\n<pre>adduser odoo_user<\/pre>\n<p>Now you can copy the backup archive from your source server to the destination with the rsync command (execute this command on the source server):<\/p>\n<pre>rsync -avz --progress -e \"ssh -p 22\" odoo_backup.tgz odoo_user@destination-ip-address:\/home\/odoo-user\/<\/pre>\n<p>If SSH listens on a different port on the destination server, change the ssh port number accordingly.<\/p>\n<p>You can extract the archive with the following command:<\/p>\n<pre>tar -zxf odoo_backup.tgz<\/pre>\n<p>You also need to copy your odoo-server.conf\u00a0 and init file to the appropriate location;<\/p>\n<pre>cp odoo-server.conf \/etc\/\r\ncp odoo-server \/etc\/init.d\/<\/pre>\n<p>Depending on where you have placed your odoo directory, you will need to change the path to your addons directory accordingly inside the odoo-server.conf file:<\/p>\n<pre>nano \/etc\/odoo-server.conf<\/pre>\n<p>and edit the path for the addons_path if necessary.<\/p>\n<p>Switch back to user root, and create the appropriate log file at the location specified in the configuration file. For example:<\/p>\n<pre>touch \/var\/log\/odoo-server.log\r\n<\/pre>\n<h2>3. Restoring the Database<\/h2>\n<p>To restore the database, create a new postgresql user with the following commands:<\/p>\n<pre>su postgres\r\ncreateuser odoo_user<\/pre>\n<p>Create an empty database by executing:<\/p>\n<pre>createdb odoo_db<\/pre>\n<p>Give a password to the user:<\/p>\n<pre>psql\r\npsql=# alter user odoo_user with encrypted password 'strong-password';<\/pre>\n<p>And grant all privileges on the database with:<\/p>\n<pre>grant all privileges on database odoo_db to odoo_user ;<\/pre>\n<p>Now, you can import your database from the source server into the newly created empty database by executing the following command:<\/p>\n<pre>psql odoo_db &lt; \/path\/to\/db_backup.sql<\/pre>\n<p>Again, you can use the alternative tools we have mentioned before to do this, or you can directly export it from your browser using the Odoo Database Manager.<\/p>\n<p>You should also assign your odoo_user as the owner of all the files in your current odoo directory:<\/p>\n<pre>chown -R odoo_user: \/path\/to\/your\/odoo\/directory<\/pre>\n<p>With this, the migration of your Odoo should be completed.<\/p>\n<p>&nbsp;<\/p>\n<h2>4. Start your Odoo Server<\/h2>\n<p>You can now start your Odoo on the new server with the following command:<\/p>\n<pre>service odoo-server start<\/pre>\n<p>You can also try to open your Odoo inside your browser and test if everything is working properly. Congratulations!<\/p>\n<p>&nbsp;<\/p>\n<p>If you are one of our <a href=\"https:\/\/linuxhostsupport.com\">Linux Host Support<\/a>\u00a0customers, you don\u2019t have to do any of this, <a href=\"https:\/\/chat.linuxhostsupport.com\/index.php\/chat\/start\" target=\"_blank\" rel=\"noopener\">simply ask our admins<\/a>, sit back and relax. Our admins will <strong>migrate your Odoo from one server to another<\/strong> for you immediately.<\/p>\n<p><span style=\"color: #ff0000;\"><strong>PS<\/strong><\/span>. 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><div id=\"linux-59510860\" class=\"linux-after-8th-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1340&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial, we will show you how to completely migrate your Odoo installation, from one server to another. In this tutorial, an Ubuntu 16.04 server is used as both source and destination server. The migration is also possible between different Linux distributions. If this is the case, you can use one of our Linux [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":231,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2],"tags":[79,51,50,52,44],"class_list":["post-225","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","tag-linux-host-support","tag-migration","tag-odoo","tag-server","tag-vps"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Migrate Odoo from one Server to Another | LinuxHostSupport<\/title>\n<meta name=\"description\" content=\"In this tutorial, we will show you how to completely migrate your Odoo installation, from one server to another. In this tutorial, an Ubuntu 16.04 server\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/linuxhostsupport.com\/blog\/how-to-migrate-odoo-from-one-server-to-another\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Migrate Odoo from one Server to Another | LinuxHostSupport\" \/>\n<meta property=\"og:description\" content=\"In this tutorial, we will show you how to completely migrate your Odoo installation, from one server to another. In this tutorial, an Ubuntu 16.04 server\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linuxhostsupport.com\/blog\/how-to-migrate-odoo-from-one-server-to-another\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxHostSupport\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/linuxhostsupport\" \/>\n<meta property=\"article:published_time\" content=\"2017-09-27T08:54:11+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-04-29T08:07:55+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2017\/09\/How-to-Migrate-Odoo-from-one-Server-to-Another.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"600\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:site\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-migrate-odoo-from-one-server-to-another\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-migrate-odoo-from-one-server-to-another\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"headline\":\"How to Migrate Odoo from one Server to Another\",\"datePublished\":\"2017-09-27T08:54:11+00:00\",\"dateModified\":\"2024-04-29T08:07:55+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-migrate-odoo-from-one-server-to-another\\\/\"},\"wordCount\":724,\"commentCount\":7,\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-migrate-odoo-from-one-server-to-another\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/09\\\/How-to-Migrate-Odoo-from-one-Server-to-Another.jpg\",\"keywords\":[\"Linux host support\",\"migration\",\"odoo\",\"server\",\"vps\"],\"articleSection\":[\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-migrate-odoo-from-one-server-to-another\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-migrate-odoo-from-one-server-to-another\\\/\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-migrate-odoo-from-one-server-to-another\\\/\",\"name\":\"How to Migrate Odoo from one Server to Another | LinuxHostSupport\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-migrate-odoo-from-one-server-to-another\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-migrate-odoo-from-one-server-to-another\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/09\\\/How-to-Migrate-Odoo-from-one-Server-to-Another.jpg\",\"datePublished\":\"2017-09-27T08:54:11+00:00\",\"dateModified\":\"2024-04-29T08:07:55+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"description\":\"In this tutorial, we will show you how to completely migrate your Odoo installation, from one server to another. In this tutorial, an Ubuntu 16.04 server\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-migrate-odoo-from-one-server-to-another\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-migrate-odoo-from-one-server-to-another\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-migrate-odoo-from-one-server-to-another\\\/#primaryimage\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/09\\\/How-to-Migrate-Odoo-from-one-Server-to-Another.jpg\",\"contentUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/09\\\/How-to-Migrate-Odoo-from-one-Server-to-Another.jpg\",\"width\":1200,\"height\":600,\"caption\":\"How-to-Migrate-Odoo-from-one-Server-to-Another\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-migrate-odoo-from-one-server-to-another\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Migrate Odoo from one Server to Another\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\",\"name\":\"LinuxHostSupport\",\"description\":\"Linux Tutorials and Guides\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/author\\\/r0s3admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Migrate Odoo from one Server to Another | LinuxHostSupport","description":"In this tutorial, we will show you how to completely migrate your Odoo installation, from one server to another. In this tutorial, an Ubuntu 16.04 server","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:\/\/linuxhostsupport.com\/blog\/how-to-migrate-odoo-from-one-server-to-another\/","og_locale":"en_US","og_type":"article","og_title":"How to Migrate Odoo from one Server to Another | LinuxHostSupport","og_description":"In this tutorial, we will show you how to completely migrate your Odoo installation, from one server to another. In this tutorial, an Ubuntu 16.04 server","og_url":"https:\/\/linuxhostsupport.com\/blog\/how-to-migrate-odoo-from-one-server-to-another\/","og_site_name":"LinuxHostSupport","article_publisher":"https:\/\/www.facebook.com\/linuxhostsupport","article_published_time":"2017-09-27T08:54:11+00:00","article_modified_time":"2024-04-29T08:07:55+00:00","og_image":[{"width":1200,"height":600,"url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2017\/09\/How-to-Migrate-Odoo-from-one-Server-to-Another.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@lnxhostsupport","twitter_site":"@lnxhostsupport","twitter_misc":{"Written by":"admin","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-migrate-odoo-from-one-server-to-another\/#article","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-migrate-odoo-from-one-server-to-another\/"},"author":{"name":"admin","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"headline":"How to Migrate Odoo from one Server to Another","datePublished":"2017-09-27T08:54:11+00:00","dateModified":"2024-04-29T08:07:55+00:00","mainEntityOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-migrate-odoo-from-one-server-to-another\/"},"wordCount":724,"commentCount":7,"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-migrate-odoo-from-one-server-to-another\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2017\/09\/How-to-Migrate-Odoo-from-one-Server-to-Another.jpg","keywords":["Linux host support","migration","odoo","server","vps"],"articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-migrate-odoo-from-one-server-to-another\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-migrate-odoo-from-one-server-to-another\/","url":"https:\/\/linuxhostsupport.com\/blog\/how-to-migrate-odoo-from-one-server-to-another\/","name":"How to Migrate Odoo from one Server to Another | LinuxHostSupport","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-migrate-odoo-from-one-server-to-another\/#primaryimage"},"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-migrate-odoo-from-one-server-to-another\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2017\/09\/How-to-Migrate-Odoo-from-one-Server-to-Another.jpg","datePublished":"2017-09-27T08:54:11+00:00","dateModified":"2024-04-29T08:07:55+00:00","author":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"description":"In this tutorial, we will show you how to completely migrate your Odoo installation, from one server to another. In this tutorial, an Ubuntu 16.04 server","breadcrumb":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-migrate-odoo-from-one-server-to-another\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-migrate-odoo-from-one-server-to-another\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-migrate-odoo-from-one-server-to-another\/#primaryimage","url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2017\/09\/How-to-Migrate-Odoo-from-one-Server-to-Another.jpg","contentUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2017\/09\/How-to-Migrate-Odoo-from-one-Server-to-Another.jpg","width":1200,"height":600,"caption":"How-to-Migrate-Odoo-from-one-Server-to-Another"},{"@type":"BreadcrumbList","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-migrate-odoo-from-one-server-to-another\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linuxhostsupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Migrate Odoo from one Server to Another"}]},{"@type":"WebSite","@id":"https:\/\/linuxhostsupport.com\/blog\/#website","url":"https:\/\/linuxhostsupport.com\/blog\/","name":"LinuxHostSupport","description":"Linux Tutorials and Guides","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/linuxhostsupport.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","caption":"admin"},"url":"https:\/\/linuxhostsupport.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/225","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/comments?post=225"}],"version-history":[{"count":5,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/225\/revisions"}],"predecessor-version":[{"id":2131,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/225\/revisions\/2131"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media\/231"}],"wp:attachment":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media?parent=225"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/categories?post=225"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/tags?post=225"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}