Page 1 of 1
Rclone settings for Blomp
Posted: Wed May 01, 2019 4:22 am
by upload
Can somebody write here quick step-by-step guide to create new rclone remote to blomp.com? Fastest way - paste output of command
where "blomp" is name of remote in your rclone.conf(without colon). Replace credentials with xxxxx, of course. Thanks!
Re: Rclone settings for Blomp
Posted: Mon May 06, 2019 3:12 am
by BlompTeam
Hi upload,
To connect to your storage with rclone you have to create the config file first. You can create the config file with rclone command: rclone config. This command enables you to have the config in plain text or you can encrypt it with a password for more security. The variables for rclone config file are following:
type = swift
user = [your email]
key = [your password]
auth =
https://authenticate.blomp.com
tenant = storage
auth_version = 2
Other variables can be ignored, the above are the only ones you need to connect to Blomp storage.
Your config now looks like:
Code: Select all
[remote]
type = swift
user = [your email]
key = [your password]
auth = https://authenticate.blomp.com
tenant = storage
auth_version = 2
You can now use rclone to connect to your storage. For example, list the content of your storage:
Code: Select all
rclone.exe --config=my.conf ls remote:[your email]
Or sync your container with a local directory (warning, this will delete any excess files in your bucket):
Code: Select all
rclone.exe --config=my.conf sync /LOCAL/FOLDER/ remote:[your email]
Re: Rclone settings for Blomp
Posted: Tue May 07, 2019 10:12 am
by upload
Thank you very much.
I know how to use rclone. But immediately after registration in my "dashboard -> advanced" auth url was "authenticate.ain.net" and rclone has error. Now with "authenticate.blomp.com" rclone can connect to blomp storage. Thanks again.
Re: Rclone settings for Blomp
Posted: Wed May 08, 2019 11:07 pm
by BlompTeam
thanks, both URLs should work.
Happy Blomping!