Recent content by Red Squirrel

  1. R

    Can't connect to PVE9 consoles [solved]

    It works now but in case someone runs into this, here's my firewall script : ipv4: #!/usr/bin/env iptables-restore *filter :FORWARD DROP [0:0] :INPUT DROP [0:0] :OUTPUT ACCEPT [0:0] -A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT #allow localhost: -A INPUT -s 127.0.0.0/8 -j ACCEPT...
  2. R

    Can't connect to PVE9 consoles [solved]

    EDIT: Got it working! Nothing makes you panic troubleshoot more than when all sites go down... Had to add this to my firewall script: ip6tables -A INPUT -s ::1/128 -j ACCEPT I started wondering if the issue was IPv6 related and started exploring that. I guess the console uses IPv6...
  3. R

    Can't connect to PVE9 consoles [solved]

    Just tried that but it did not change anything. Still can't connect to any consoles. Host or VMs. At one point I could connect to one specific VM but it was a fluke, it stopped working now. This is what I get in journald any time I try: May 30 12:40:15 sr05 pvedaemon[1724311]: connection...
  4. R

    Can't connect to PVE9 consoles [solved]

    I recently moved my VMs over to a new PVE 9.2.3 instance on an OVH server, was able to access the consoles initially, but now I can't access any of them, it just sits at connecting forever and never connects. For a while I also couldn't connect to the web interface at all as it would just hang...
  5. R

    [SOLVED] How do you restore backups?

    Oh wow I never even noticed that option there, doh! Thanks for pointing it out. I see the backups now.
  6. R

    [SOLVED] How do you restore backups?

    I don't see the backups from PBS in that list, only the ones I did locally within PVE before I installed PBS. I did add PBS as a storage type and did schedule the job. I ran it manually though, would that be an issue? I see the backups within PBS itself but not in the cluster.
  7. R

    [SOLVED] How do you restore backups?

    I can't for the life of me figure out how to do a restore. I installed Proxmox Backup Server, set it up on my cluster, ran a job, it did all the backups, and I see them in the backup server, but I don't see anywhere on either the Proxmox cluster or backup server on how to actually restore...
  8. R

    [SOLVED] New install, can't add datastore get "EPERM: Operation not permitted"

    Was not sure if backup was just an example user that they used for the tutorial or something actually built in. So ended up having to create that user on the NAS and make sure the uid matches and now it works. I figured all_squash would prevent needing to do that. It now let me create the...
  9. R

    [SOLVED] New install, can't add datastore get "EPERM: Operation not permitted"

    I just use Linux as my NAS and have the share exported. Permissions with NFS have always been a pain so I just use squash option so it forces everything to be one user/group and it doesn't matter of the client user/group. This is how the export is set: /volumes/raid2/pve_pbs...
  10. R

    [SOLVED] New install, can't add datastore get "EPERM: Operation not permitted"

    I am trying to add a local datastore, pointing to a folder that is mounted to a NFS share. I have verified that I can read and write to the folder from the console, I have squash setup on the NFS server so it shouldn't matter what user on the PBS server that tries to write to it. It's also...
  11. R

    Is there a mechanism that could cause a node to shutdown?

    That's what I figured but is not what happened here. Had a node already off, lost another for an unknown reason, booted back the node that I had previously shut down, another node went down, then when I turned on the node that originally went down for an unknown reason another node went rogue...
  12. R

    Is there a mechanism that could cause a node to shutdown?

    I am currently in the process of doing that. Most of my VMs got corrupted in this incident so need to rebuild them all, some from backups, some I am able to repair. It's a pain. Still have no idea why this happened but from what I've been told on another forum it sounds like HA does NOT do what...
  13. R

    What would cause a backup to not work, can I recover from this? [solved]

    I had a massive cluster failure, long story short after a series of failures one node went rogue and started up VMs that were already running so it ended up causing massive corruption across the board. All the VMs that are already running work but minute I reboot them they fail. So I've been...
  14. R

    Is there a mechanism that could cause a node to shutdown?

    it's a very slow process since SSH keeps locking up but here's the output of those commands: root@pve02:~# pvecm status Cluster information ------------------- Name: PVEProduction Config Version: 11 Transport: knet Secure auth: on Quorum information...
  15. R

    Is there a mechanism that could cause a node to shutdown?

    The cluster itself has quorum but the 4th node did not. it's a 4 node cluster, I set one of the nodes to have 2 votes (this one never went down) as setting up qdevice looks quite involved from what I read, and I plan to add a 5th node eventually so didn't want to go through all that work for...