Files
ROMFASTSQL/proxmox/README.md
Marius cd7b2ed9e7 Clarify storage configuration and fix node names
Storage Configuration improvements:
- Add "Noduri" column showing which nodes have access to each storage
- Clarify that 'local' is separate on each node (non-shared)
- Clarify that 'local-zfs' is shared across pvemini, pve1, pveelite
- Clarify that 'backup' is only on pvemini (10.0.20.201)
- Add detailed explanations for each storage type
- Add storage paths section with important locations

Node name corrections:
- Fix node name: pve2 → pveelite (correct cluster name)
- Update all references across proxmox-ssh-guide.md and README.md
- Add node descriptions in tables for clarity

Benefits:
- Users now know exactly which storage is available on which nodes
- Clear distinction between shared and non-shared storage
- Correct node naming throughout documentation

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-19 13:01:08 +02:00

126 lines
3.8 KiB
Markdown

# Documentație Proxmox Infrastructure - ROMFASTSQL
## 📚 Ghiduri Disponibile
### 1. **proxmox-ssh-guide.md** - Ghid General Proxmox
**Când să folosești:** Pentru orice operațiuni legate de infrastructura Proxmox
**Conține:**
- Cluster Proxmox (3 noduri: pve1, pvemini, pve2)
- Configurare SSH și acces noduri
- **Lista completă LXC containers cu IP-uri**
- **Lista completă Virtual Machines**
- Comenzi Proxmox generale (`pct`, `qm`, `pvesm`)
- Storage configuration (local-zfs, backup, backup-nfs)
- Backup jobs și politici retention
- **Hartă completă IP-uri** toate serviciile
- Troubleshooting Proxmox
- Acces rapid LXC 108 (Oracle) - comenzi de bază
### 2. **oracle-database-lxc108.md** - Oracle Database Detaliat
**Când să folosești:** Pentru orice operațiuni legate de Oracle Database
**Conține:**
- Detalii container LXC 108 (Oracle XE 21c în Docker)
- **PDB-uri (roa, roa2) - toate detaliile**
- **Useri și parole Oracle** pentru fiecare PDB
- **Connection strings** (SQL*Plus, JDBC, TNS)
- Export/Import Data Pump (expdp, impdp)
- Comenzi SQL pentru verificări (tablespace, obiecte, useri)
- Troubleshooting Oracle specific
- Diferențe Oracle 10g vs 21c (istoric migrare)
---
## 🚀 Quick Start
### Acces în Proxmox
```bash
ssh root@10.0.20.201
```
### Acces în LXC 108 (Oracle)
```bash
ssh root@10.0.20.201
pct enter 108
```
### Restart Oracle Database
```bash
# Rapid (recomandat)
ssh root@10.0.20.201 "pct exec 108 -- docker restart oracle-xe"
# Restart complet LXC
ssh root@10.0.20.201 "pct restart 108"
```
### Conexiune Oracle
```bash
# SQL*Plus la PDB roa
sqlplus sys/romfastsoft@10.0.20.121:1521/roa as sysdba
# JDBC connection string
jdbc:oracle:thin:@10.0.20.121:1521/roa
```
---
## 📋 Hartă Rapidă Resurse
### Noduri Proxmox
| Nod | IP | Web GUI |
|-----|-----|---------|
| pve1 | 10.0.20.200 | https://10.0.20.200:8006 |
| **pvemini** | 10.0.20.201 | https://10.0.20.201:8006 |
| pveelite | 10.0.20.202 | https://10.0.20.202:8006 |
### LXC Containers (Servicii Active)
| VMID | Nume | IP | Serviciu |
|------|------|-----|----------|
| 100 | portainer | 10.0.20.170 | Docker Management |
| 103 | dokploy | 10.0.20.167 | Deployment Platform |
| 104 | flowise | 10.0.20.161 | Flowise AI + Ollama |
| 106 | gitea | 10.0.20.165 | Git Server |
| 108 | central-oracle | 10.0.20.121 | **Oracle XE 21c** |
### Virtual Machines
| VMID | Nume | OS | Rol |
|------|------|-----|-----|
| 201 | roacentral | Windows 11 | Client aplicații |
| 300 | Win11-Template | Windows 11 | Template pentru clonare |
---
## 🔗 Link-uri Utile
**Oracle Database (LXC 108):**
- Oracle Listener: `10.0.20.121:1521`
- Oracle EM Express: http://10.0.20.121:5500/em
- Portainer: http://10.0.20.121:9443
**Alte Servicii:**
- Portainer Principal: http://10.0.20.170:9443
- Gitea: http://10.0.20.165:3000
- Dokploy: http://10.0.20.167:3000
- Flowise AI: http://10.0.20.161:3000
---
## 📖 Navigare Rapidă
**Am nevoie să:**
- Văd toate VM-urile și LXC-urile → `proxmox-ssh-guide.md`
- Configurez SSH pe Proxmox → `proxmox-ssh-guide.md` → "Configurare Inițială SSH"
- Restart Oracle Database → `proxmox-ssh-guide.md` → "LXC 108 - Acces Rapid"
- Conectez la Oracle Database → `oracle-database-lxc108.md` → "Conexiuni Oracle"
- Export/Import DMP Oracle → `oracle-database-lxc108.md` → "Export și Import Data Pump"
- Verific PDB-uri Oracle → `oracle-database-lxc108.md` → "Verificări și Comenzi SQL"
- Văd toate IP-urile → `proxmox-ssh-guide.md` → "Hartă Rapidă IP-uri"
- Creez backup VM/LXC → `proxmox-ssh-guide.md` → "Gestiune Backup-uri"
---
**Ultima actualizare:** 2025-11-19
**Autor:** Marius Mutu
**Proiect:** ROMFASTSQL - Infrastructure Documentation