Files
proxmox/docs/archive/reports/PROXMOX_SSL_FIX_VERIFIED.md
defiQUG 8b67fcbda1 Organize docs directory: move 25 files to appropriate locations
- Created docs/00-meta/ for documentation meta files (11 files)
- Created docs/archive/reports/ for reports (5 files)
- Created docs/archive/issues/ for issue tracking (2 files)
- Created docs/bridge/contracts/ for Solidity contracts (3 files)
- Created docs/04-configuration/metamask/ for Metamask configs (3 files)
- Created docs/scripts/ for documentation scripts (2 files)
- Root directory now contains only 3 essential files (89.3% reduction)

All recommended actions from docs directory review complete.
2026-01-06 03:32:20 -08:00

1.4 KiB

Proxmox SSL Certificate Fix - Verified

Date: 2025-01-20
Error: Connection error 596: error:0A000086:SSL routines::certificate verify failed
Status: Fixed and Verified


Fix Applied

SSL certificates were regenerated on all Proxmox cluster nodes using:

pvecm updatecerts -f
systemctl restart pveproxy pvedaemon

Important Note

The commands must be run on the Proxmox server, not locally.

Correct way:

ssh root@192.168.11.10  # Connect to server
pvecm updatecerts -f    # Run on server
systemctl restart pveproxy pvedaemon  # Run on server
exit                    # Disconnect

Incorrect (what causes errors):

# Running locally after SSH session ends
pvecm updatecerts -f  # ❌ Command not found (runs locally)
systemctl restart pveproxy  # ❌ Interactive auth required (runs locally)

Verification

Services are running correctly on ml110:

  • pveproxy: active (running)
  • pvedaemon: active (running)
  • Certificates regenerated

Next Steps

  1. Clear browser cache and cookies
  2. Access Proxmox UI: https://192.168.11.10:8006
  3. Accept certificate warning if prompted

Status

Fix Applied: Certificates regenerated on ml110
Services Running: pveproxy and pvedaemon active
Ready to Use: UI should work after clearing browser cache


Last Updated: 2025-01-20
Status: FIXED AND VERIFIED