Service Management UIs
Docker Compose provides Redis Stack UI and RustFS Console. Their ports are configured in .env.
Restrict access
These interfaces expose cache, task message, and object storage data. Restrict production access with a firewall or VPN.
View credentials
Run from the asp-compose/ directory:
grep -E '^(REDIS_PASSWORD|RUSTFS_ACCESS_KEY|RUSTFS_SECRET_KEY)=' .env.env contains sensitive credentials. Do not commit or disclose it.
Redis Stack UI
Default URL:
http://<server>:8001If ASP_REDIS_UI_PORT was changed in .env, use the configured port.
Redis Stack UI is the RedisInsight management interface. On first access, add a Redis database with:
| Field | Value |
|---|---|
| Host | 127.0.0.1 |
| Port | 6379 |
| Username | default |
| Password | Value of REDIS_PASSWORD in .env |
RedisInsight and Redis Server run in the same redis-stack container, so use 127.0.0.1:6379.
RustFS Console
Default URL:
http://<server>:9001If ASP_RUSTFS_CONSOLE_PORT was changed in .env, use the configured port.
| Field | Value |
|---|---|
| Access Key | Value of RUSTFS_ACCESS_KEY in .env |
| Secret Key | Value of RUSTFS_SECRET_KEY in .env |
After login, you can inspect the ASP bucket, objects, and storage status. The bucket name is configured by RUSTFS_BUCKET.
Troubleshooting
Check services and ports:
docker compose ps redis-stack rustfs
grep -E '^ASP_(MANAGEMENT_BIND|REDIS_UI_PORT|RUSTFS_CONSOLE_PORT)=' .envView logs:
docker compose logs --tail=100 redis-stack
docker compose logs --tail=100 rustfsNext Steps
- Restart & Operations — Check service status, ports, and logs.
- Custom Content Deployment — Deploy custom content and dependencies.