You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
#### 摘取镜像
|
|
|
|
|
|
|
|
|
|
```shell
|
|
|
|
|
yum install docker -y
|
|
|
|
|
|
|
|
|
|
docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/quay.io/minio/minio:RELEASE.2023-12-20T01-00-02Z
|
|
|
|
|
docker tag swr.cn-north-4.myhuaweicloud.com/ddn-k8s/quay.io/minio/minio:RELEASE.2023-12-20T01-00-02Z quay.io/minio/minio:RELEASE.2023-12-20T01-00-02Z
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#### 启动实例
|
|
|
|
|
|
|
|
|
|
```shell
|
|
|
|
|
mkdir -p /opt/minio/{data,.minio}
|
|
|
|
|
|
|
|
|
|
docker run --name minio -d -p 9000:9000 -p 9090:9090 -v /opt/minio/data:/data -v /opt/minio/.minio:/root/.minio quay.io/minio/minio:RELEASE.2023-12-20T01-00-02Z server /data --console-address ":9090" --address ":9000"
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#### 访问办法
|
|
|
|
|
通过浏览器访问`http://10.10.14.210:9090/login`,即可访问MinIO的Web管理界面,
|
|
|
|
|
|
|
|
|
|
默认凭证
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
minioadmin
|
|
|
|
|
minioadmin
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#### 匿名访问
|
|
|
|
|
|
|
|
|
|
进入桶管理,配置匿名访问规则。Prefix输入 /,Access选择 readonly。保存后,再次访问`http://10.10.14.212:9090/dsideal/安吉丽娜朱莉.jpg`可以看到图片了。
|
|
|
|
|
|
|
|
|
|

|