| 12
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 
 | # bucket要求:sams-private:Anonymous Access为默认
 sams-public:Anonymous Access为{"Prefix": "*", "Access": "readonly"}
 
 1. 创建账号密码
 shaixxx    xxx@P2023    # 生产环境,readwrite, Secret Key
 2. Policies-->readwrite-->Raw Policy
 {
 "Version": "2012-10-17",
 "Statement": [
 {
 "Effect": "Allow",
 "Action": [
 "s3:DeleteObject",
 "s3:GetBucketLocation",
 "s3:GetObject",
 "s3:PutObject"
 ],
 "Resource": [
 "arn:aws:s3:::sams-*"
 ]
 }
 ]
 }
 
 3. 访问
 $ mc alias set shancha https://oss.xxxx.com shaicha xxxx@P2023 --api s3v4
 Added `shancha` successfully.
 $ mc alias list
 shancha
 URL       : https://oss.xxxx.com
 AccessKey : shaicha
 SecretKey : xxxx@P2023
 API       : s3v4
 Path      : auto
 
 |