Skip to content

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:

bash
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:

text
http://<server>:8001

If 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:

FieldValue
Host127.0.0.1
Port6379
Usernamedefault
PasswordValue 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:

text
http://<server>:9001

If ASP_RUSTFS_CONSOLE_PORT was changed in .env, use the configured port.

FieldValue
Access KeyValue of RUSTFS_ACCESS_KEY in .env
Secret KeyValue 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:

bash
docker compose ps redis-stack rustfs
grep -E '^ASP_(MANAGEMENT_BIND|REDIS_UI_PORT|RUSTFS_CONSOLE_PORT)=' .env

View logs:

bash
docker compose logs --tail=100 redis-stack
docker compose logs --tail=100 rustfs

Next Steps