|
Bucket Commander needs a configuration file to perform Upload/Download/Copy operations. If Bucket Commander configuration file does not exist, it will show the message :
Configuration file '
\config\BucketCommander.xml' does not exist.
You can use
'Edit Commander Config File'
option from
Tools
in Bucket Explorer to set commander config . If you are using only Bucket Commander then you need to edit BucketCommander.xml manually.
You need to follow given steps to run Bucket Commander for Download/Upload/Copy operations:
1.
Save Credential
2.
Edit Commander Configuration File
3.
Set Email Configuration for sending Email Report for Commander Operations
|
|
1 ˆ
Save Credential
To save credentials you need to edit the BucketExplorer.XML.
-
Open BucketExplorer.XML from <Bucket Explorer Root Folder>\config\BucketExplorer .xml.
-
You will find the <Authentication> tag in XML.
-
Under this tag you will find these tags-
-
<CommanderAKey> tag with value
"PlainText:[sampleAccessKey]"
-
<CommanderSKey> tag with value
"PlainText:[sampleSecretKey]"
-
Replace the
[sampleAccessKey]
with your Access key.
-
Now replace the
[sampleSecretKey]
with your Secret key.
-
Replace the existing value of <Name> Tag with any new value.
E.g.-BucketCommander.xml:
<Authentication>
<Akey>PlainText:[sampleAccessKey]</Akey>
<Skey>PlainText:[sampleSecretKey]</Skey>
<CommanderAKey>PlainText:GHKLIURTYHNMKLUMGT76</CommanderAKey>
<CommanderSKey>PlainText:2rU8bnRhrkpf0qG50cXW7tyvlwogtdbUFQnJn56th</CommanderSKey>
<Password>false</Password>
<Time>1257853614647</Time>
<DontPromptUntil>1257853614647</DontPromptUntil>
<Name>examplename</Name>
</Authentication>
-
Save your changes and close the BucketExplorer.XML.
|
2 ˆ
Edit Commander Configuration file
-
Open the BucketCommander.xml file.
e. g. <Bucket Commander Home>\config\BucketCommander.xml.
-
Fill the entries for Upload/Download/Copy tag in BucketCommander.xml, for required operations which you want to perform.
e.g Suppose you want to configure commander for upload.
Open BucketCommander.xml file,you will find the structure like this:
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<root>
<Debug>off</Debug>
<Upload>
<UploadContents>
<ParentVirtualFolderPath/>
<CompareNameAndSize>true</CompareNameAndSize>
<Overwrite>true</Overwrite>
<FileList>
<FilePath>/../ Desktop/Ready_To_Upload</FilePath>
</FileList>
<Bucket>Bucket_Name</Bucket>
</UploadContents>
</Upload>
<Download>
.... // Download Configuration
....
</Download>
<CopyBucket>
..... // Copy Configuration
.....
</CopyBucket>
</root>
3 ˆ
Set Email Configuration for sending Email Report for Commander Operations
-
Open the BucketExplorer.XML.
-
You will find the
tag in Xml like this
<SMTPServers>
<SMTPServer Name="emailprofilename" Status="ON">
<From>example1@example.com</From>
<To>example2@example.com</To>
<Cc>example3@example.com</Cc>
<Bcc>example4@example.com</Bcc>
<Port>25</Port>
<Secure>Yes</Secure>
<ServerName>example.server.com</ServerName>
<Password>PlainText:Password</Password>
</SMTPServer>
-
You will find
tag with value
"PlainText:Password"
.
-
Now replace the Password with your desired Password.
-
Replace other given tag with desired value.
-
Save your changes and close the BucketExplorer.XML.
Related Topics :
|
|