[SOLVED] Files Not Showing In GUI After Fresh Re-Install

codejp3

Member
Nov 29, 2019
19
7
23
44
Title says it.

I was running PMX 6.2.4 just fine, but had a HDD issue on the OS HDD. Replaced with a new one and a fresh install of PMX 6.2.4.

I set all of my data drives back up. They show active, and the proper used/free space info, but zero files show up in the GUI. Files are there and accessible in the cli.



Code:
# pvesm status
Name                   Type     Status           Total            Used       Available        %
containers-full         dir     active       479662760           73768       455153692    0.02%
containers-thin     lvmthin     active       488235008               0       488235008    0.00%
ext-backup              dir     active      2883220084           90168      2736600256    0.00%
local                   dir     active        98559220         2534024        90975648    2.57%
local-lvm           lvmthin     active       489828352               0       489828352    0.00%
pvestorage              dir     active       459024512        89375960       346261624   19.47%
storage                 dir     active      5803859128      2443002060      3068288800   42.09%

Code:
# mount | grep /dev/mapper
/dev/mapper/pve-root on / type ext4 (rw,relatime,errors=remount-ro)
/dev/mapper/pvesystem-pvevzdump on /mnt/pvestorage type ext4 (rw,relatime,errors=remount-ro)
/dev/mapper/containers-full on /mnt/containers/full type ext4 (rw,relatime,errors=remount-ro)
/dev/mapper/vgstorage-storage on /mnt/storage type ext4 (rw,relatime,errors=remount-ro)

Code:
# cat /etc/pve/storage.cfg
dir: local
    path /var/lib/vz
    content backup,iso,vztmpl

lvmthin: local-lvm
    thinpool data
    vgname pve
    content rootdir,images

dir: pvestorage
    path /mnt/pvestorage
    content iso,snippets,backup,images,vztmpl,rootdir
    maxfiles 5
    shared 1

dir: storage
    path /mnt/storage
    content snippets,backup,iso,images,vztmpl,rootdir
    maxfiles 5
    shared 1

dir: ext-backup
    path /mnt/backup
    content rootdir,vztmpl,images,snippets,iso,backup
    maxfiles 30
    shared 1

dir: containers-full
    path /mnt/containers/full
    content images,rootdir
    shared 1

lvmthin: containers-thin
    thinpool thin
    vgname containers
    content rootdir,images

Code:
# pveversion -v
proxmox-ve: 6.2-1 (running kernel: 5.4.41-1-pve)
pve-manager: 6.2-4 (running version: 6.2-4/9824574a)
pve-kernel-5.4: 6.2-2
pve-kernel-helper: 6.2-2
pve-kernel-5.4.41-1-pve: 5.4.41-1
pve-kernel-5.4.34-1-pve: 5.4.34-2
ceph-fuse: 12.2.11+dfsg1-2.1+b1
corosync: 3.0.3-pve1
criu: 3.11-3
glusterfs-client: 5.5-3
ifupdown: 0.8.35+pve1
ksm-control-daemon: 1.3-1
libjs-extjs: 6.0.1-10
libknet1: 1.15-pve1
libproxmox-acme-perl: 1.0.4
libpve-access-control: 6.1-1
libpve-apiclient-perl: 3.0-3
libpve-common-perl: 6.1-2
libpve-guest-common-perl: 3.0-10
libpve-http-server-perl: 3.0-5
libpve-storage-perl: 6.1-8
libqb0: 1.0.5-1
libspice-server1: 0.14.2-4~pve6+1
lvm2: 2.03.02-pve4
lxc-pve: 4.0.2-1
lxcfs: 4.0.3-pve2
novnc-pve: 1.1.0-1
proxmox-mini-journalreader: 1.1-1
proxmox-widget-toolkit: 2.2-1
pve-cluster: 6.1-8
pve-container: 3.1-6
pve-docs: 6.2-4
pve-edk2-firmware: 2.20200229-1
pve-firewall: 4.1-2
pve-firmware: 3.1-1
pve-ha-manager: 3.0-9
pve-i18n: 2.1-2
pve-qemu-kvm: 5.0.0-2
pve-xtermjs: 4.3.0-1
qemu-server: 6.2-2
smartmontools: 7.1-pve2
spiceterm: 3.1-1
vncterm: 1.6-1
zfsutils-linux: 0.8.4-pve1


Tried so far:
1.) restarting pve-manager
2.) restarting pve-storage
3.) restarting pvedaemon

What else can I try to "refresh" the files in the GUI?
 
I figured it out.

Turns out that specifying the correct directory makes a difference :rolleyes:

I had to change /mnt/storage & /mnt/pvestorage to /mnt/storage/vzdump & /mnt/pvestorage/vzdump, which is where all of my files were actually located.

Dumb mistake, but I'm leaving this thread here for others to reference.
 
  • Like
Reactions: Stoiko Ivanov
Thanks for sharing your solution!