[Rclone] Mount vStorage lên Window server

Để thực hiện Mount vStorage thành Local Drive trên Window sử dụng Rclone, hãy làm theo hướng dẫn sau:

1. Tải và cài đặt rclone theo hướng dẫn sau:

2. Tạo file chứng thực rclone.conf theo mẫu sau:

Sau khi tải xuống và cài đặt Rclone, thực hiện tạo file rclone.conf tại thư mục C:\Users\username\.config\rclone với nội dung

[vstorage]
type = s3
provider = Other
access_key_id = <<Lấy thông tin từ vStorage Portal>>
secret_access_key = <<Lấy thông tin từ vStorage Portal>>
endpoint = https://hcm04.vstorage.vngcloud.vn

3. Thực hiện mount

  • Tiếp theo, bạn có thể sử dụng Rclone với CMD hoặc PowerShell

    • Để list danh sách object trong một bucket, hãy sử dụng lệnh:

      C:\Users\stackops\Downloads\rclone.exe ls vstorage:[bucket_name]
    • Để upload một object lên bucket, hãy dùng lệnh:

      C:\Users\stackops\Downloads\rclone.exe copy [local_path] vstorage:[bucket_name]
    • Để mount một bucket trên vStorage thành local_path, hãy chạy lệnh:

      C:\Users\stackops\Downloads\rclone.exe mount vstorage:[bucket_name] [local_path] --vfs-cache-mode off --allow-non-empty --allow-other --drive-chunk-size 128M  --max-read-ahead 200M --dir-cache-time 30m

Lưu ý:

  • Bạn không cần phải tạo sẵn đường dẫn local_path trên máy local khi tiến hành mount.

  • Rclone không hỗ trợ mode chạy ngầm (background mode) nên bạn không được đóng cmd trong quá trình sử dụng.

Last updated