S3 Storage
Object data storages based on the S3 (Simple Storage Service) protocol allow storing files of any types. For grouping and storing files, special containers are used — buckets. Axidian Privilege supports S3 data storage MinIO.
To create and configure a data storage:
Log in to the server that will act as the file data storage.
Go to the Buckets section on the left panel.
Click Create bucket.
Fill in the Bucket Name field.
Click Create bucket.
Make sure that the created data storage appears in the Buckets section.
Go to the Access Keys section in the left panel.
Click Create Access Key.
Fill in the Access Key and Secret Key fields.
infoKeys are required by Axidian Privilege Gateway Service to access the data storage. Specify the Access Key and Secret Key in the wizard when setting up the data storage.
Open the command prompt as administrator and check the data storage availability:
rclone lsjson \
--s3-endpoint <hostname> \
--s3-provider Other \
--s3-access-key-id <access-key-id> \
--s3-secret-access-key <secret-access-key> \
--s3-acl public-read-write \
:s3:<bucket_name>hostname— IP address or DNS name of the server with data storage.
Example:"http://127.0.0.1:9000"access-key-id— Access key.secret-access-key— Secret key.bucket_name— data storage name.
If the media storage is available and contains no files, the command will return an empty list:
[].