Update README.md

This commit is contained in:
jaewooklee93
2024-06-30 02:46:26 +09:00
committed by GitHub
parent e377274094
commit 101c6bf7f1

View File

@@ -43,18 +43,16 @@
<executable>minio.exe</executable>
<env name="MINIO_ROOT_USER" value="minio"/>
<env name="MINIO_ROOT_PASSWORD" value="minio123"/>
<arguments>server C:\minio</arguments>
<arguments>server C:\minio --console-address :9001</arguments>
<logmode>rotate</logmode>
</service>
```
- API: `:9000` (default)
- WebUI: `:40154` (자동 생성됨)
- WebUI: `:9001`
- RootUser: `minio`
- RootPass: `minio123`
- `C:\minio`에 실제 데이터가 저장된다.
여기에서는 <arguments>로 `--console-address :9001`를 명시하지 않았으나 브라우저에서 `http://localhost:9000` 접속하면 자동생성된 port (ex. `http://localhost:40154`)로 redirect되어 간편하다.
4. 폴더를 C:\Program Files\MinIO로 복사하고 관리자 CMD에서 아래와 같이 MinIO 서비스를 설치, 시작, 중단, 재시작, 삭제 할수 있다.
```cmd
cd C:\Program Files\MinIO
@@ -66,4 +64,4 @@
minio-service.exe restart
minio-service.exe uninstall
```
이제 MinIO 서버가 Windows 로그인시 자동으로 시작다.
이제 MinIO 서버가 Windows 로그인시 자동으로 시작되어, http://localhost:9001 로 접속 가능하다.