StatusType


PROXMOX

Instance: 5.199.128.26
https://5.199.128.26:8006/#v1:0:18:4:=jsconsole::::21::

access credentials secrets in weischer-prebid-secrets.kdbx <- password for database in SDK-Database.kdbx
-> contains root-pw, kubeconfig and ssh-keys for cluster access
ssh passord login disabled


CMDs

root@pve:/# lvs
  LV   VG  Attr       LSize   Pool Origin Data%  Meta%  Move Log Cpy%Sync Convert
  data pve twi-aotz-- 130.24g             0.00   1.22                            
  root pve -wi-ao----  65.63g                                                    
  swap pve -wi-ao----   8.00g                                                    
root@pve:/# man lvs
root@pve:/# lvs
  LV   VG  Attr       LSize   Pool Origin Data%  Meta%  Move Log Cpy%Sync Convert
  data pve twi-aotz-- 130.24g             0.00   1.22                            
  root pve -wi-ao----  65.63g                                                    
  swap pve -wi-ao----   8.00g                                                    
root@pve:/# vgs
  VG  #PV #LV #SN Attr   VSize    VFree 
  pve   1   3   0 wz--n- <222.54g 16.00g
root@pve:/# lvs
  LV   VG  Attr       LSize   Pool Origin Data%  Meta%  Move Log Cpy%Sync Convert
  data pve twi-aotz-- 130.24g             0.00   1.22                            
  root pve -wi-ao----  65.63g                                                    
  swap pve -wi-ao----   8.00g                                                    
root@pve:/# vgs
  VG  #PV #LV #SN Attr   VSize    VFree 
  pve   1   3   0 wz--n- <222.54g 16.00g
root@pve:/# pvs
  PV         VG  Fmt  Attr PSize    PFree 
  /dev/sda3  pve lvm2 a--  <222.54g 16.00g
root@pve:/# zpool list
NAME         SIZE  ALLOC   FREE  CKPOINT  EXPANDSZ   FRAG    CAP  DEDUP    HEALTH  ALTROOT
vm_storage   416G  62.1G   354G        -         -    27%    14%  1.00x    ONLINE  -
root@pve:/# zfs list
NAME                       USED  AVAIL  REFER  MOUNTPOINT
vm_storage                 325G  78.0G    24K  /vm_storage
vm_storage/vm-100-disk-0     3M  78.0G    33K  -
vm_storage/vm-100-disk-1   260G   280G  57.9G  -
vm_storage/vm-103-disk-0  32.5G   108G  2.31G  -
vm_storage/vm-104-disk-0  32.5G   109G  1.83G  -
root@pve:/# 

ACCESS SERVER setup

⚙️ Generate an SSH Key Pair on Your Local Machine

ssh-keygen -t ed25519 -C "myloc-proxmox-access"

You’ll see:

Enter file in which to save the key (/home/youruser/.ssh/id_ed25519):
  • Press Enter to accept the default location, or specify a custom one (e.g., /home/youruser/.ssh/id_proxmox).
  • using id_myloc as key filename

Then:

Enter passphrase (empty for no passphrase):
  • Optionally set a passphrase for added security.
  • Leave blank if you prefer no passphrase.

This creates two files:

  • Private key: ~/.ssh/id_ed25519
  • Public key: ~/.ssh/id_ed25519.pub

📤 Copy the Public Key to Your Proxmox Server

Use the ssh-copy-id command to send your public key to the server:

ssh-copy-id -i ~/.ssh/id_myloc.pub root@5.199.128.26

🔑 What This Does

This command appends your public key to:

/root/.ssh/authorized_keys

on the Proxmox server, allowing passwordless login.

You’ll need to enter your root password this one time.


🧪 Test SSH Login

Now test your connection:

ssh root@5.199.128.26

Simplify

into /etc/hosts

5.199.128.26 myloc-pve
5.199.140.38 myloc-mh
ssh -l root myloc-pve
ssh -l root myloc-mh