{"id":5591,"date":"2020-12-23T15:24:03","date_gmt":"2020-12-23T09:54:03","guid":{"rendered":"https:\/\/www.skynats.com\/?p=5591"},"modified":"2025-05-22T11:38:39","modified_gmt":"2025-05-22T06:08:39","slug":"transferring-the-digital-ocean-spaces-between-the-region-rclone","status":"publish","type":"post","link":"https:\/\/www.skynats.com\/blog\/transferring-the-digital-ocean-spaces-between-the-region-rclone\/","title":{"rendered":"How to Transfer the Digital ocean spaces between the region by using Rclone"},"content":{"rendered":"\n<p><strong> Generating an API key and Digital ocean space<\/strong>:<\/p>\n\n\n\n<p>Before installing and configuring Rclone need to copy the objects between the spaces, which will acquire some information regarding the digital ocean account. For that you need a spaces API key, and need to know about the regions and the names of source and destination spaces. In this blog you will learn How to Transfer Digitalocean spaces between the region using Rclone<\/p>\n\n\n\n<p>If you need an assist for managing your digitalocean account, our expert teams are available 24 hours to set up on behalf of you. Please check out our <a href=\"https:\/\/www.skynats.com\/digitalocean-management\/\" target=\"_blank\" rel=\"noreferrer noopener\">Digital ocean management<\/a> plan for more details.<\/p>\n\n\n\n<p><strong>To Generate API key:<\/strong><\/p>\n\n\n\n<p>In order to create the digitalocean spaces API key you need to follow the \u201ccreating access key\u201d section to know how to create API key documentation.<\/p>\n\n\n\n<p>Save the access key and the secret key. Will be useful to configure Rclone in later stage.<\/p>\n\n\n\n<p><strong>Manage Administrative Access to Spaces<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Spaces are the S3 compatible object storage will allow you to store and manage an enormous amount of data.<\/li>\n\n\n\n<li>It is similar to a bucket where we can store and use files.<\/li>\n\n\n\n<li>We can share access to space by creating an access key.<\/li>\n\n\n\n<li>Once the key moves to access keys then select the &#8220;Generate New Key&#8221; option.<\/li>\n\n\n\n<li>The Name Text box will view on the screen from there you can suggest a name for the access key this will allow you to identify who or what uses the key and then click on the checkmark.<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>After specifying the name, you will see the access key on the next line of the secret key.<\/li>\n\n\n\n<li>This will not directly proceed with the process for that you need to copy the key in a safe place or file.<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>If suppose the secret key has lost or forgotten, you can regenerate the key by selecting the More menu and click on the edit button, choose the regenerate token that leads to create a new key.<\/li>\n\n\n\n<li>Whenever a new key deliberate you need to reconfigure its secret value.<\/li>\n<\/ul>\n\n\n\n<p><strong>Finding the space for S3-compatiable endpoint<\/strong><\/p>\n\n\n\n<p>Next step is to find the endpoints for each space. From the Digitalocean control panel, you can view the space\u2019s endpoint by selecting the setting tab.<\/p>\n\n\n\n<p>The endpoint will always be the region you to create a space and it is followed by the <a href=\"https:\/\/www.digitalocean.com\/products\/spaces\">digitaloceanspaces.com<\/a> and ensure to make a note for both spaces of the endpoint, we use this information while creating the Rclone configuration.<\/p>\n\n\n\n<p><strong>Next step is installing Rclone<\/strong>. You can install the Rclone from your local system or you can also install the Rclone on a droplet located source.<\/p>\n\n\n\n<p>Click on the download section and select the appropriate zipped binary that matches your computer operating system and start downloading it.<\/p>\n\n\n\n<p>Once you are done with the zip file download into your system need to follow the section that matches your platform.<\/p>\n\n\n\n<p><strong>Linux<\/strong><\/p>\n\n\n\n<p>&nbsp;If you are running Ubuntu or Debian you can update the local package and install the unzipped file.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ sudo apt update<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>$ sudo apt install unzip<\/code><\/pre>\n\n\n\n<p><strong>Installing unzip for centos or fedora.<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ sudo yum install unzip\n<\/code><\/pre>\n\n\n\n<p>&nbsp;Once you are done with unzip installation the next process is to download the Rclone zip file.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ cd ~\/Downloads<\/code><\/pre>\n\n\n\n<p><strong>Next step<\/strong> is to archive and move into newly created directory:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ unzip rclone*<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>$ cd rclone-v*<\/code><\/pre>\n\n\n\n<p>From here you need to copy the binary to the \/usr\/local\/bin directory.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ sudo cp rclone \/usr\/local\/bin\n<\/code><\/pre>\n\n\n\n<p><strong>Next, add the manual page to the system<\/strong>. So that we can easily access to the command syntax and other available option. Ensure that the local manual directory is available and then copy the rclone.1 file:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ sudo mkdir -p \/usr\/local\/share\/man\/man1<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>$ sudo cp rclone.1\/usr\/local\/share\/man\/man1<\/code><\/pre>\n\n\n\n<p>Update the man database in order to add the new manual page to the system.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ sudo mandb<\/code><\/pre>\n\n\n\n<p>Finally, create the Rclone configuration directory and open the configuration file.<\/p>\n\n\n\n<p>It will open a new blank file along with text editor. Need to skip the section on configuring Rclone to continue.<\/p>\n\n\n\n<p><strong>MacOS<\/strong><\/p>\n\n\n\n<p>If you are running the macOS begin with the rclone zip file from where you have downloaded it.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ cd ~\/downloads<\/code><\/pre>\n\n\n\n<p><strong>Next, step is to unzip the file then move it to the new directory.<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ unzip -a rclone*<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>$ cd rclone-v*<\/code><\/pre>\n\n\n\n<p><strong>Next, <\/strong>ensure the \/usr\/local\/bin directory accessible and then copy the rclone binary.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ sudo mkdir -p\/usr\/local\/bin<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>$ sudo cp rclone \/usr\/local\/bin<\/code><\/pre>\n\n\n\n<p><strong>Final step is to create the configuration directory and open the configuration file.<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ mkdir -p ~\/.config\/rclone<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>$ nano ~\/.config\/rclone\/rclone.conf<\/code><\/pre>\n\n\n\n<p>It opens a text editor along with a new blank file. Skip the section on configuring Rclone and then continue.<\/p>\n\n\n\n<p><strong>Windows<\/strong><\/p>\n\n\n\n<p>If you are running the windows then begin from the downloaded directory in the windows file explorer. Select the rclone zip file and then right-click, A menu will be displayed on the screen, click on to the Extract All&#8230;<\/p>\n\n\n\n<p>The rclone.exe must run from the command line. Before that, the prompts need to extract the files from the zip.&nbsp;<\/p>\n\n\n\n<p>Then open the new command prompt (the cmd.exe program) window by clicking the windows button from the lower-left corner select the command prompt by typing cmd.<\/p>\n\n\n\n<p>You need to be inside in the rclone path which you have extracted it by typing.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>c:\\&gt;cd \"%testpath%\\downloads\\rclone*\\rclone*\"<\/code><\/pre>\n\n\n\n<p><strong>Verify the directory contents to ensure the correct location.<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>c:\\&gt; dir<\/code><\/pre>\n\n\n\n<p><strong>Note<\/strong>: macOS and Linux   &#8211; rclone<\/p>\n\n\n\n<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;window  &#8211; rclone.exe.<\/p>\n\n\n\n<p><strong>Next,<\/strong> create the configuration directory and then open the configuration file to define the S3 and spaces credentials:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>c:\\&gt; mkdir \"%carepath%\\.config\\rclone\"<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>c:\\&gt; notepad \"%carepath%\\.config\\rclone\\rclone.conf\"<\/code><\/pre>\n\n\n\n<p>It opens a text editor along with a new blank file. Go ahead and define the region of the space in the configuration file.<\/p>\n\n\n\n<p><strong>Configuring Rclone<\/strong><\/p>\n\n\n\n<p>Configure the two digitalocean spaces regions as Rclone &#8220;remotes&#8221; in the rclone configuration file and then paste the configuration file to define the first region:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&#91;spaces-skyo2]\ntype = s3\nenv_auth = false\naccess_key_id = your_spaces_access_key\nsecret_access_key = your_spaces_secret_key\nendpoint = skyo2.digitaloceanspaces.com\nacl = private<\/code><\/pre>\n\n\n\n<p>Here, we can define the spaces access credentials in the configuration file, so that we can set env_auth as false.<\/p>\n\n\n\n<p>Next need to set the access_key_id and secret_access_key variables to access the spaces access key and secret key. Ensure to change the values to the credentials of your account.<\/p>\n\n\n\n<p><strong>(Set the endpoint to the spaces endpoint)<\/strong><\/p>\n\n\n\n<p>Finally, set the acl to private to protect the assets until we share it.<\/p>\n\n\n\n<p><strong>Next,<\/strong> make a duplicate configuration block, update the name and the endpoint region to reflect the second region.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>...\n&#91;spaces-syc3]\ntype = s3\nenv_auth = false\naccess_key_id = your_spaces_access_key\nsecret_access_key = your_spaces_secret_key\nendpoint = syc3.digitaloceanspaces.com\nacl = private\n<\/code><\/pre>\n\n\n\n<p>Once you are done with the configuration, need to save and close the file.<\/p>\n\n\n\n<p>macOS and Linux, ensure the lockdown permission to the configuration file since the credentials are inside:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ chmod 600~\/.config\/rclone\/rclone.conf<\/code><\/pre>\n\n\n\n<p><strong>Copy the objects from S3 to spaces.<\/strong><\/p>\n\n\n\n<p>Once the configuration is done, we need to transfer the files.<\/p>\n\n\n\n<p>Need to check the rclone configured remotes before you begin.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ rclone listremotes<\/code><\/pre>\n\n\n\n<p><strong>output<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>spaces-syc3:<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>spaces-sky2<\/code><\/pre>\n\n\n\n<p>Now you can view the available spaces in the directory.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ rclone lsd spaces-sky2;<\/code><\/pre>\n\n\n\n<p><strong>Output<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>-1 2020-12-21 13:07:55-1 source-space<\/code><\/pre>\n\n\n\n<p>Repeat the same process to view the other region:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ rclone lsd spaces-syc3:<\/code><\/pre>\n\n\n\n<p><strong>Output<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>-1 2020-12-21 13:09:45-1 destination-space<\/code><\/pre>\n\n\n\n<p>You can use the tree command to view the contents space.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ rclone tree spaces-skyo2:source-space<\/code><\/pre>\n\n\n\n<p>To copy the files between the spaces.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ rclone sync spaces-sky2:source-space spaces-syc3:distination-space<\/code><\/pre>\n\n\n\n<p>To check the objects that have a transfer by using the tree subcommand:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ rclone tree spaces-syc3:destination-space<\/code><\/pre>\n\n\n\n<p>Check the subcommand to compare the objects in both region.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ rclone check spaces-skyo2:source-space space-syc3:destination-space<\/code><\/pre>\n\n\n\n<p>This will compare the both values of each objects in remotes. You will be obtain an notification indicating that the values could not be compared.in such cases you can rerun the command.<\/p>\n\n\n\n<p>Need help transferring DigitalOcean Spaces between regions using Rclone? Contact our team for <a href=\"https:\/\/www.skynats.com\/digitalocean-management\/\">expert support<\/a> and seamless migration assistance!<\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Generating an API key and Digital ocean space: Before installing and configuring Rclone need to copy the objects between the spaces, which will acquire some information regarding the digital ocean account. For that you need a spaces API key, and need to know about the regions and the names of source and destination spaces. In [&hellip;]<\/p>\n","protected":false},"author":7,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5,122],"tags":[167,169,166,168,165],"class_list":["post-5591","post","type-post","status-publish","format-standard","hentry","category-blog","category-digitalocean-management","tag-configuring-rclone","tag-creating-access-key","tag-generating-an-api-key","tag-manage-administrative-access-to-spaces","tag-transferring-digital-ocean-space"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.9 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Transfer DigitalOcean spaces between region using Rclone<\/title>\n<meta name=\"description\" content=\"Transfer your DigitalOcean Spaces across regions effortlessly using Rclone. Achieve fast, secure, and efficient data migration.\" \/>\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.skynats.com\/blog\/transferring-the-digital-ocean-spaces-between-the-region-rclone\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Transfer the Digital ocean spaces between the region by using Rclone\" \/>\n<meta property=\"og:description\" content=\"Transfer your DigitalOcean Spaces across regions effortlessly using Rclone. Achieve fast, secure, and efficient data migration.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.skynats.com\/blog\/transferring-the-digital-ocean-spaces-between-the-region-rclone\/\" \/>\n<meta property=\"og:site_name\" content=\"Server Management Services | Cloud Management | Skynats\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/skynats\" \/>\n<meta property=\"article:published_time\" content=\"2020-12-23T09:54:03+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-05-22T06:08:39+00:00\" \/>\n<meta name=\"author\" content=\"Nabeela\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@skynatstech\" \/>\n<meta name=\"twitter:site\" content=\"@skynatstech\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Nabeela\" \/>\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.skynats.com\\\/blog\\\/transferring-the-digital-ocean-spaces-between-the-region-rclone\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/transferring-the-digital-ocean-spaces-between-the-region-rclone\\\/\"},\"author\":{\"name\":\"Nabeela\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/2968118a72bea0868796abf1237ab3e0\"},\"headline\":\"How to Transfer the Digital ocean spaces between the region by using Rclone\",\"datePublished\":\"2020-12-23T09:54:03+00:00\",\"dateModified\":\"2025-05-22T06:08:39+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/transferring-the-digital-ocean-spaces-between-the-region-rclone\\\/\"},\"wordCount\":1192,\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"keywords\":[\"configuring Rclone\",\"creating access key\",\"generating an API key\",\"manage administrative access to spaces\",\"transferring digital ocean space\"],\"articleSection\":[\"Blog\",\"digitalocean-management\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/transferring-the-digital-ocean-spaces-between-the-region-rclone\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/transferring-the-digital-ocean-spaces-between-the-region-rclone\\\/\",\"name\":\"Transfer DigitalOcean spaces between region using Rclone\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\"},\"datePublished\":\"2020-12-23T09:54:03+00:00\",\"dateModified\":\"2025-05-22T06:08:39+00:00\",\"description\":\"Transfer your DigitalOcean Spaces across regions effortlessly using Rclone. Achieve fast, secure, and efficient data migration.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/transferring-the-digital-ocean-spaces-between-the-region-rclone\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.skynats.com\\\/blog\\\/transferring-the-digital-ocean-spaces-between-the-region-rclone\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/transferring-the-digital-ocean-spaces-between-the-region-rclone\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Transfer the Digital ocean spaces between the region by using Rclone\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\",\"name\":\"Server Management Services | Cloud Management | Skynats\",\"description\":\"Server Management and Cloud Management\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\",\"name\":\"Skynats Technologies\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Sknats-Logo-New-whole.png\",\"contentUrl\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Sknats-Logo-New-whole.png\",\"width\":989,\"height\":367,\"caption\":\"Skynats Technologies\"},\"image\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/skynats\",\"https:\\\/\\\/x.com\\\/skynatstech\",\"https:\\\/\\\/www.instagram.com\\\/skynatstech\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/skynats-technologies\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCvTAjrFJ4_E2MJKwlDHomlg\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/2968118a72bea0868796abf1237ab3e0\",\"name\":\"Nabeela\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/12a999d0e3cd16cf2383c5551b39d00d6ddc2d035a2581ce5d85fce0762d0372?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/12a999d0e3cd16cf2383c5551b39d00d6ddc2d035a2581ce5d85fce0762d0372?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/12a999d0e3cd16cf2383c5551b39d00d6ddc2d035a2581ce5d85fce0762d0372?s=96&d=mm&r=g\",\"caption\":\"Nabeela\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Transfer DigitalOcean spaces between region using Rclone","description":"Transfer your DigitalOcean Spaces across regions effortlessly using Rclone. Achieve fast, secure, and efficient data migration.","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.skynats.com\/blog\/transferring-the-digital-ocean-spaces-between-the-region-rclone\/","og_locale":"en_US","og_type":"article","og_title":"How to Transfer the Digital ocean spaces between the region by using Rclone","og_description":"Transfer your DigitalOcean Spaces across regions effortlessly using Rclone. Achieve fast, secure, and efficient data migration.","og_url":"https:\/\/www.skynats.com\/blog\/transferring-the-digital-ocean-spaces-between-the-region-rclone\/","og_site_name":"Server Management Services | Cloud Management | Skynats","article_publisher":"https:\/\/www.facebook.com\/skynats","article_published_time":"2020-12-23T09:54:03+00:00","article_modified_time":"2025-05-22T06:08:39+00:00","author":"Nabeela","twitter_card":"summary_large_image","twitter_creator":"@skynatstech","twitter_site":"@skynatstech","twitter_misc":{"Written by":"Nabeela","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.skynats.com\/blog\/transferring-the-digital-ocean-spaces-between-the-region-rclone\/#article","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/transferring-the-digital-ocean-spaces-between-the-region-rclone\/"},"author":{"name":"Nabeela","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/2968118a72bea0868796abf1237ab3e0"},"headline":"How to Transfer the Digital ocean spaces between the region by using Rclone","datePublished":"2020-12-23T09:54:03+00:00","dateModified":"2025-05-22T06:08:39+00:00","mainEntityOfPage":{"@id":"https:\/\/www.skynats.com\/blog\/transferring-the-digital-ocean-spaces-between-the-region-rclone\/"},"wordCount":1192,"publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"keywords":["configuring Rclone","creating access key","generating an API key","manage administrative access to spaces","transferring digital ocean space"],"articleSection":["Blog","digitalocean-management"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.skynats.com\/blog\/transferring-the-digital-ocean-spaces-between-the-region-rclone\/","url":"https:\/\/www.skynats.com\/blog\/transferring-the-digital-ocean-spaces-between-the-region-rclone\/","name":"Transfer DigitalOcean spaces between region using Rclone","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/#website"},"datePublished":"2020-12-23T09:54:03+00:00","dateModified":"2025-05-22T06:08:39+00:00","description":"Transfer your DigitalOcean Spaces across regions effortlessly using Rclone. Achieve fast, secure, and efficient data migration.","breadcrumb":{"@id":"https:\/\/www.skynats.com\/blog\/transferring-the-digital-ocean-spaces-between-the-region-rclone\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.skynats.com\/blog\/transferring-the-digital-ocean-spaces-between-the-region-rclone\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.skynats.com\/blog\/transferring-the-digital-ocean-spaces-between-the-region-rclone\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.skynats.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Transfer the Digital ocean spaces between the region by using Rclone"}]},{"@type":"WebSite","@id":"https:\/\/www.skynats.com\/blog\/#website","url":"https:\/\/www.skynats.com\/blog\/","name":"Server Management Services | Cloud Management | Skynats","description":"Server Management and Cloud Management","publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.skynats.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.skynats.com\/blog\/#organization","name":"Skynats Technologies","url":"https:\/\/www.skynats.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/08\/Sknats-Logo-New-whole.png","contentUrl":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/08\/Sknats-Logo-New-whole.png","width":989,"height":367,"caption":"Skynats Technologies"},"image":{"@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/skynats","https:\/\/x.com\/skynatstech","https:\/\/www.instagram.com\/skynatstech\/","https:\/\/www.linkedin.com\/company\/skynats-technologies","https:\/\/www.youtube.com\/channel\/UCvTAjrFJ4_E2MJKwlDHomlg"]},{"@type":"Person","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/2968118a72bea0868796abf1237ab3e0","name":"Nabeela","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/12a999d0e3cd16cf2383c5551b39d00d6ddc2d035a2581ce5d85fce0762d0372?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/12a999d0e3cd16cf2383c5551b39d00d6ddc2d035a2581ce5d85fce0762d0372?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/12a999d0e3cd16cf2383c5551b39d00d6ddc2d035a2581ce5d85fce0762d0372?s=96&d=mm&r=g","caption":"Nabeela"}}]}},"_links":{"self":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/5591","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/users\/7"}],"replies":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/comments?post=5591"}],"version-history":[{"count":3,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/5591\/revisions"}],"predecessor-version":[{"id":14934,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/5591\/revisions\/14934"}],"wp:attachment":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/media?parent=5591"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/categories?post=5591"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/tags?post=5591"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}