Grafana + Prometheus + Proxmox czyli prezentacja metryk z serwera

Posted on Sat 11 February 2023 in Linux, Proxmox, Wirtualizacja • 2 min read

Najszybciej na świecie uruchomić Grafanę i Prometheusa można za pomocą kontenerów.

IP maszyny z Proxmoxem: 192.168.1.2
IP maszyny z Grafaną i Prometheusem: 192.168.1.1

Na maszynie 192.168.1.1 mam Dockera, odpalam na niej kontenery z Grafaną i Prometeuszem.

Grafana

grafana.yml
docker-compose -f …

Continue reading

Darmowy Virtual Data Room - Pydio/Cells

Posted on Wed 02 March 2022 in Automatyczny dom, Linux, Wirtualizacja • 4 min read

Kilka(naście) lat temu zbudowałem VDR dla developera holetu. Było to proste repozytorium na dokumenty, z prostymi uprawnieniami: jeden administrator i wielu użytkowników z opcją odczytu. Potem się to trochę rozbudowało ale niespecjalnie mocno. Repozytorium obsługiwało się za pomocą vsftpd, a udostępnianie umożliwiał Apache. Działa to do dziś. Główną wadą …


Continue reading

EVE na Proxmoxie

Posted on Wed 17 February 2021 in Proxmox, Wirtualizacja • 1 min read

Środowisko EVE, bo emulowane laboratorium do testowania konfiguracji sieci należy nazwać środowiskiem, to podobno niezłe narzędzie. Nie wiem, jeszcze nie dotykałem, używałem GNS3 i odrobinę ciscowego PacketTracera. Pora spróbować wersji darmowej...

Instalacja EVE na Proxmoxie z pobranej konfiguracji VMWare nie udała mi się. Po skonwertowaniu maszyny:

qm importovf 111 ./EVE-COMM-VM …

Continue reading

Proxmox: Mount USB disk to VZ or LXC container

Posted on Fri 06 April 2018 in Wirtualizacja • 1 min read

First check what is the number of VZ container you want to mount disk to:
vzlist
      CTID      NPROC STATUS    IP_ADDR         HOSTNAME
       113       …

Continue reading

Proxmox: Transfer machines images from 3.x to 4.x lvm-thin storage

Posted on Fri 06 April 2018 in Wirtualizacja • 1 min read

I want to migrate all my machines from old 3.x Proxmox box to new 4.4.

There's lvm-thin storage on new machine that I cannot directly access from the old one.

So after many attemps I found a way:

  1. create new storage inside ‚data’ logical volume:
lvcreate -n …

Continue reading

Proxmox: resize disk in LXC container

Posted on Fri 06 April 2018 in Proxmox, Tips4Unices, Wirtualizacja • 1 min read

  1. Shutdown container.
  2. Resize disk with GUI: select machine, click Resources, select Disk and click Resize Disk or
  3. Resize disk with console: pct resize <vmid> <disk> <size> [OPTIONS]
  4. On Proxmox machine in console: e2fsck -fy /dev/pve/vm-<vmid>-disk-x resize2fs /dev/pve/vm-<vmid>-disk-x
  5. Sometimes you will need to …

Continue reading

ZFS: from array to array

Posted on Thu 05 April 2018 in Tips4Unices • 4 min read

I own few Microservers Gen8 build by HP.

Each of them is beautiful and cool machine. It has compact and modular design with easy access to basic components. It's hardware configuration is also nice and sufficient for small office. It is definitely better choice than NAS as offers more flexibility …


Continue reading

Mount & list content of raw disk image (KVM)

Posted on Thu 05 April 2018 in Tips4Unices • 1 min read

Sometimes I need to list content of raw disk image I made from original computer and converted to KVM.
This is very simple in Debian or Ubuntu. I made script to do it but it works only with one image and 1st partition because that’s what I need. Feel …

Continue reading