Recent content by PMXUsername

  1. P

    lookup_datastore failed - Permission denied (os error 13) errors

    Nope not NFS. Direct hard drives. I have it installed on dedicated machine with HDDs mounted in fstab - very basic setup.
  2. P

    lookup_datastore failed - Permission denied (os error 13) errors

    All my backups to Proxmox Backup Server are failing with permission denied errors and when I look at the /var/log/syslog, I see several lookup_datastore failed - Permission denied (os error 13) errors. Permissions on the root datastore directory: drwxr-xr-x 5 backup backup 4096 Oct 30 00:24...
  3. P

    [SOLVED] All ports of LXCs are suddenly blocked! VMs work fine.

    UPDATE: I fixed the issue! I had configured all my LXCs with /32 as subnet and once I changed them to /24, everything started working again! Thanks!
  4. P

    [SOLVED] All ports of LXCs are suddenly blocked! VMs work fine.

    Nothing special - default vanilla setup. /etc/network/interfaces auto lo iface lo inet loopback iface eno1 inet manual auto vmbr0 iface vmbr0 inet static address 192.168.12.201 netmask 255.255.255.0 gateway 192.168.12.1 bridge_ports eno1 bridge_stp off bridge_fd 0
  5. P

    [SOLVED] All ports of LXCs are suddenly blocked! VMs work fine.

    UPDATE: If I use DHCP instead of Static IP for LXC, everything is working fine! So as a workaround I for now, I'm using DHCP with static IP assignment to that LXC from my router. Another thing I have noticed is if I ping the LXC which is configured with DHCP, the ping time/latency is much lower...
  6. P

    [SOLVED] All ports of LXCs are suddenly blocked! VMs work fine.

    Yup! user@node:~$ ping testing PING testing.redacted.com (192.168.12.221) 56(84) bytes of data. 64 bytes from testing.redacted.com (192.168.12.221): icmp_seq=1 ttl=63 time=0.324 ms 64 bytes from testing.redacted.com (192.168.12.221): icmp_seq=2 ttl=63 time=0.435 ms 64 bytes from...
  7. P

    [SOLVED] All ports of LXCs are suddenly blocked! VMs work fine.

    pve-firewall status Status: disabled/running I executed pve-firewall stop and the status is now Status: disabled/stopped but the issue is not fixed. LXC Config: arch: amd64 cores: 1 hostname: Testing memory: 2048 mp0: /mnt/data,mp=/mnt/data,replicate=0,ro=1 nameserver: 192.168.12.253 net0...
  8. P

    [SOLVED] All ports of LXCs are suddenly blocked! VMs work fine.

    Everything was working fine initially and all of a sudden I'm facing this rather bizarre issue (only) with LXCs (VMs work fine). As an example, I cannot SSH to the LXC from host but can SSH to it from a different LAN device. I know I can enter the LXC using pct enter <id> but the point is its...