Windows IO 启动配置
This commit is contained in:
commit
a9ac28f6b1
10
base/Resources/io/Readme.md
Normal file
10
base/Resources/io/Readme.md
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
|
||||||
|
RELEASE.2023-07-21T21-12-44Z
|
||||||
|
支持Win7
|
||||||
|
下载地址:
|
||||||
|
https://dl.min.io/server/minio/release/windows-amd64/archive/minio.RELEASE.2023-07-21T21-12-44Z
|
||||||
|
|
||||||
|
|
||||||
|
其他历史版本下载地址:
|
||||||
|
https://dl.min.io/server/minio/release/windows-amd64/archive/
|
||||||
|
|
1
base/Resources/io/config/buckets.txt
Normal file
1
base/Resources/io/config/buckets.txt
Normal file
@ -0,0 +1 @@
|
|||||||
|
dev/public/test
|
5
base/Resources/io/config/data.txt
Normal file
5
base/Resources/io/config/data.txt
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
lXSrqEcAVohPNXduJopS/QOGRA7J20DX4hkVZ9zxKzT2LIDyJVANDn50jR44r
|
||||||
|
TS5qkfrzPWUMGAwpHMYZ/oMOGshNWfdWH9DwxnK5G9ZFfGIUuwrNjvQ2glKbP
|
||||||
|
H9Ttfrb5cyvWhpmfWJZE/bScymo0XStmWbg2ESWzaWDKxljfMBwGttfEJgabb
|
||||||
|
G5PoLrqEkU6GcLgFJmpi/TikSw6F3BAezJhFZOBTaoK0kqjihID4jDfXI6Wyr
|
||||||
|
d4aYukalXedyXxkzG9GG/ZwUnm4YcnNdOMJSxnaY8gnHUjCN367C3fVaDxCnm
|
Binary file not shown.
Binary file not shown.
BIN
base/Resources/io/data/.minio.sys/buckets/.usage.json/xl.meta
Normal file
BIN
base/Resources/io/data/.minio.sys/buckets/.usage.json/xl.meta
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
base/Resources/io/data/.minio.sys/config/config.json/xl.meta
Normal file
BIN
base/Resources/io/data/.minio.sys/config/config.json/xl.meta
Normal file
Binary file not shown.
BIN
base/Resources/io/data/.minio.sys/config/iam/format.json/xl.meta
Normal file
BIN
base/Resources/io/data/.minio.sys/config/iam/format.json/xl.meta
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
1
base/Resources/io/data/.minio.sys/format.json
Normal file
1
base/Resources/io/data/.minio.sys/format.json
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"version":"1","format":"xl-single","id":"970d54f5-cd3a-4ba7-9555-842c26c4ea8c","xl":{"version":"3","this":"8cf766e8-1cac-4207-bab4-578c892b6500","sets":[["8cf766e8-1cac-4207-bab4-578c892b6500"]],"distributionAlgo":"SIPMOD+PARITY"}}
|
BIN
base/Resources/io/data/.minio.sys/pool.bin/xl.meta
Normal file
BIN
base/Resources/io/data/.minio.sys/pool.bin/xl.meta
Normal file
Binary file not shown.
Binary file not shown.
35
base/Resources/io/minio-server.bat
Normal file
35
base/Resources/io/minio-server.bat
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
@echo off
|
||||||
|
chcp 65001
|
||||||
|
title MinIO Quick Start
|
||||||
|
|
||||||
|
set MINIO_EXE=minio.exe
|
||||||
|
set DATA_DIR=./data
|
||||||
|
set CONSOLE_PORT=9001
|
||||||
|
|
||||||
|
:: 检查minio.exe是否存在
|
||||||
|
if not exist "%MINIO_EXE%" (
|
||||||
|
echo Error: %MINIO_EXE% 不存在!
|
||||||
|
pause
|
||||||
|
exit /b 1
|
||||||
|
)
|
||||||
|
|
||||||
|
:: 设置MinIO凭据
|
||||||
|
set MINIO_ROOT_USER=minio_FEaTQx
|
||||||
|
set MINIO_ROOT_PASSWORD=minio_34KYwR
|
||||||
|
|
||||||
|
:: 检查数据目录是否存在,不存在则创建
|
||||||
|
if not exist "%DATA_DIR%" (
|
||||||
|
mkdir "%DATA_DIR%"
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
if exist "%MINIO_EXE%" (
|
||||||
|
echo Starting MinIO server...
|
||||||
|
start "Scenario Server" cmd /k "%MINIO_EXE% server ^"%DATA_DIR%^" --console-address ^":%CONSOLE_PORT%^""
|
||||||
|
)
|
||||||
|
|
||||||
|
echo MinIO 服务已启动:
|
||||||
|
echo - MinIO API (端口: 9000)
|
||||||
|
echo - MinIO Web (端口: 9001)
|
||||||
|
|
||||||
|
pause
|
Loading…
x
Reference in New Issue
Block a user