Clustering with Amazon AWS S3¶
When setting up clustering, you can use Amazon AWS S3 as a binary handler, meaning AWS S3 will be used to store binary files.
Tip
Before you start, you should be familiar with the clustering documentation.
Set up AWS S3 account¶
- Go to https://aws.amazon.com/ and create an account. An existing Amazon account can be used.
- Choose a region.
The example below uses EU (Ireland):
eu-west-1
- Create a bucket in your chosen region and make note of the bucket name: http://docs.aws.amazon.com/AmazonS3/latest/gsg/CreatingABucket.html.
- Go to the IAM Management Console and create a user. See http://docs.aws.amazon.com/AmazonS3/latest/dev/s3-access-control.html.
- Then create a group and assign the user to the group.
- Assign policies to the group. The
AmazonS3FullAccess
policy gives read/write access to your bucket. - Still in the IAM console, view the user you created. Click the "Security credentials" tab.
- Click "Create access key" and make note of the "Access key ID" and the "Secret access key". The secret key cannot be retrieved again after the key has been created, so don't lose it. (However, you can create new keys if needed.)
Note
Make sure that your bucket is configured as Public to avoid facing 403 errors, as the current S3 handler is meant to store files publicly so they can be served directly from S3.
Set up eZ Platform for AWS S3¶
In your eZ Platform root directory, run php composer.phar require league/flysystem-aws-s3-v3:^1.0
.
In your eZ Platform configuration, e.g. app/config/config.yml
, set up the AWS S3 client:
1 2 3 4 5 6 7 8 9 10 |
|
In the same eZ Platform configuration, set up the Flysystem adapter that uses the S3 client:
1 2 3 4 5 6 7 |
|
In the same place, set up the binary data handler for the S3 adapter:
1 2 3 4 5 |
|
Note
aws_s3
is an arbitrary handler identifier that is used in the config block below.
You can configure multiple handlers.
For example, you could configure one called gcloud_storage
for a third-party (community-supported)
Google Cloud Storage adapter.
In your eZ Platform system settings, e.g. app/config/ezplatform.yml
, enable the binary data handler:
1 2 3 4 5 6 7 |
|
Clear all caches and reload, and that's it.
Migrate your existing binary data to S3¶
You can migrate existing binary data to S3 using the php bin/console ezplatform:io:migrate-files
command
which was added in EZP-25946.