Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Overview

Mounting a bucket to a local drive enables the creation of a virtual drive directly on the computer, allowing users to manage their cloud storage data seamlessly without the need for additional tools or portal access.

Procedure

Step 1: Download the RClone tool at this “Link” and extract the file after download

Step 2: Run the RClone tool by

...

Windows PowerShell

Expand
  1. Example: the path of the folder which

...

  1. stores RClone tool “.\Downloads\rclone\”

...

image-20241030-025217.pngImage Added
  • Open Window PowerShell and run this command “ .\Downloads\rclone\rclone.exe help “ to check RClone tool is working on your Server/PC

image-20241030-031118.pngImage Modified

Step 3: Configuration HI GIO S3 storage connect with RClone

Expand
  • Create the connection configuration file with this command

Code Block
.\Downloads\rclone\rclone.exe config create Higio s3 env_auth false access_key_id xxxxxxxxxxxxxx secret_access_key xxxxxxxxxxxxxxxxxxx region hcm1 endpoint https://xxx.xxx.xx

** Note: “ .\Downloads\rclone\rclone.exe" is the folder path store the RClone tool. Security Key get it in “HERE”

...

image-20241030-035141.pngImage Added

    ...

    • Verify the connection to HI GIO S3 Storage by performing operations such as listing buckets and listing objects.

    • "Listing the bucket information"

    Code Block
     .\Downloads\rclone\rclone.exe lsf Higio:
    • "Listing objects inside the bucket"

    Code Block
    .\Downloads\rclone\rclone.exe lsf Higio:examplebucket1

    ...

    image-20241030-034910.pngImage Added

    Step 4: Mount a bucket as a local drive on your computer to enable direct access and management of cloud storage data.

    Expand
    1. To mount a bucket as a drive on your computer, ensure that WinFsp is installed. “Link Download”

    2. Setup WinFSP → Click Next until Finish

    ...

    image-20241030-035622.pngImage Added

      ...

      1. After

      ...

      1. installing WinFSP app, run the command below to mount Bucket

      Code Block
      .\Downloads\rclone\rclone.exe mount Higio:examplebucket1 S:\ --vfs-cache-mode full

      ...

      image-20241030-040109.pngImage Added

        ...

        1. Verify if the mount was successful.

        ...

        image-20241030-040755.pngImage Added

        Step 5: Set up the configuration to automatically mount the bucket on system reboot.

        Expand
        1. Open

        ...

        1. “Run,” then type “shell:startup

        2. Create the new file

        ...

        1. withthe name “mounts3.cmd” and copy this code below to that file

        Code Block
        "C:\Users\Administrator".\Downloads\rclone\rclone.exe mount Higio:examblebucket1 S:\ --vfs-cache-mode full --no-console --log-file C:\startup.txt

        ...

        image-20241030-083951.pngImage Added

          ...

          1. Save the file, then reboot the Server to test

          End.