- Move oracle/CONEXIUNI-ORACLE.md → proxmox/oracle-database-lxc108.md - Create proxmox/README.md as documentation index - Update proxmox-ssh-guide.md: * Remove VM 107 references (decommissioned) * Update LXC and VM tables with IP addresses * Add IP address map for all services * Simplify Oracle section (detailed info in oracle-database-lxc108.md) * Update backup job configuration Benefits: - All infrastructure docs in proxmox/ directory - Clear separation: general Proxmox (proxmox-ssh-guide.md) vs Oracle-specific (oracle-database-lxc108.md) - No duplicate information between files - Easy navigation with README.md index 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
126 lines
3.8 KiB
Markdown
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 (local) | 10.0.20.201 | https://10.0.20.201:8006 |
|
|
| pve2 | 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
|