- Organized 252 files across project - Root directory: 187 → 2 files (98.9% reduction) - Moved configuration guides to docs/04-configuration/ - Moved troubleshooting guides to docs/09-troubleshooting/ - Moved quick start guides to docs/01-getting-started/ - Moved reports to reports/ directory - Archived temporary files - Generated comprehensive reports and documentation - Created maintenance scripts and guides All files organized according to established standards.
40 lines
1.1 KiB
Markdown
40 lines
1.1 KiB
Markdown
# VMID Reference - Quick Check
|
|
|
|
**Confirmed VMID Allocations:**
|
|
|
|
| Service | VMID | IP Address | Container Type |
|
|
|---------|------|------------|----------------|
|
|
| **Redis** | **106** | 192.168.11.110 | LXC |
|
|
| **Web3Signer** | 107 | 192.168.11.111 | LXC |
|
|
| **Vault** | 108 | 192.168.11.112 | LXC |
|
|
| Translator 1 | 2400 | 192.168.11.240 | QEMU/KVM |
|
|
| Translator 2 | 2401 | 192.168.11.241 | QEMU/KVM |
|
|
| Translator 3 | 2402 | 192.168.11.242 | QEMU/KVM |
|
|
|
|
## Scripts Use Correct VMIDs
|
|
|
|
All scripts correctly reference:
|
|
- `REDIS_CONTAINER="106"` ✅
|
|
- `WEB3SIGNER_CONTAINER="107"` ✅
|
|
- `VAULT_CONTAINER="108"` ✅
|
|
|
|
## Quick Commands
|
|
|
|
```bash
|
|
# Redis (VMID 106)
|
|
ssh root@192.168.11.11 "pct exec 106 -- systemctl status redis-server"
|
|
ssh root@192.168.11.11 "pct exec 106 -- redis-cli ping"
|
|
|
|
# Web3Signer (VMID 107)
|
|
ssh root@192.168.11.11 "pct exec 107 -- systemctl status web3signer"
|
|
curl http://192.168.11.111:9000/upcheck
|
|
|
|
# Vault (VMID 108)
|
|
ssh root@192.168.11.11 "pct exec 108 -- systemctl status vault"
|
|
curl http://192.168.11.112:8200/v1/sys/health
|
|
```
|
|
|
|
---
|
|
|
|
**Status**: All VMIDs confirmed and correctly referenced in scripts ✅
|