I've been interacting with Amazon S3 through S3Fox and I can't seem to delete my buckets. I select a bucket, hit delete, confirm the delete in a popup, and... nothing happens. Is there another tool that I should use?
|
1
|
|||
|
|
|
@Stu - I've tried the delete all the entries thing as well, and it still didn't work. Unless they've recently fixed it, this just seems like a bug. |
||
|
|
|
|
I guess the easiest way would be to use S3fm, a free online file manager for Amazon S3. No applications to install, no 3rd party web sites registrations. Runs directly from Amazon S3, secure and convenient. Just select your bucket and hit delete. |
||
|
|
This may be a bug in S3Fox, because it is generally able to delete items recursively. However, I'm not sure if I've ever tried to delete a whole bucket and its contents at once. The JetS3t project, as mentioned by Stu, includes a Java GUI applet you can easily run in a browser to manage your S3 buckets: Cockpit. It has both strengths and weaknesses compared to S3Fox, but there's a good chance it will help you deal with your troublesome bucket. Though it will require you to delete the objects first, then the bucket. Disclaimer: I'm the author of JetS3t and Cockpit |
||
|
|
|
|
SpaceBlock also makes it simple to delete s3 buckets - right click bucket, delete, wait for job to complete in transfers view, done. This is the free and open source windows s3 front-end that I maintain, so shameless plug alert etc. |
||
|
|
|
|
Remeber that S3 Buckets need to be empty before they can be deleted. The good news is that most 3rd party tools automate this process. If you are running into problems with S3Fox, I recommend trying S3FM for GUI or S3Sync for command line. Amazon has a great article describing how to use S3Sync. After setting up your variables, the key command is
Deleting buckets with lots of individual files tends to crash a lot of S3 tools because they try to display a list of all files in the directory. You need to find a way to delete in batches. The best GUI tool I've found for this purpose is Bucket Explorer. It deletes files in a S3 bucket in 1000 file chunks and does not crash when trying to open large buckets like s3Fox and S3FM. I've also found a few scripts that you can use for this purpose. I haven't tried these scripts yet but they look pretty straightforward. RUBY
PERL
SOURCE: Tarkblog Hope this helps! |
||
|
|
|
|
I've always ended up using their C# API and little scripts to do this. I'm not sure why S3Fox can't do it, but that functionality appears to be broken within it at the moment. I'm sure that many of the other S3 tools can do it as well, though. |
||
|
|
|
|
Delete all of the objects in the bucket first. Then you can delete the bucket itself. Apparently, one cannot delete a bucket with objects in it and S3Fox does not do this for you. I've had other little issues with S3Fox myself, like this, and now use a Java based tool, jets3t which is more forthcoming about error conditions. There must be others, too. |
||
|
|
|
|
You must make sure you have correct write permission set for the bucket, and the bucket contains no objects. Some useful tools that can assist your deletion: CrossFTP, view and delete the buckets like the FTP client. jets3t Tool as mentioned above. |
||
|
|
|
|
With s3cmd: Create a new empty directory s3cmd sync --delete-removed empty_directory s3://yourbucket |
||
|
|
|
|
I hacked together a script for doing it from Python, it successfully removed my 9000 objects. See this page: |
||
|
|
|
|
I'll have to have a look at some of these alternative file managers. I've used (and like) BucketExplorer, which you can get from - surprisingly - http://www.bucketexplorer.com/. It's a 30 day free trial, then (currently) costing US$49.99 per licence (US$49.95 on the purchase cover page). |
||
|
|
|
|
One more shameless plug: I got tired of waiting for individual HTTP delete requests when I had to delete 250,000 items, so I wrote a Ruby script that does it multithreaded and completes in a fraction of the time: http://github.com/sfeley/s3nuke/ This is one that works much faster in Ruby 1.9 because of the way threads are handled. |
||
|
|
|
|
Try RightScale - it's great web app for dealing with AWS. |
||
|
|
