THIS /\ has worked for me, thanks!
To sum it up:
0. I've had only one node (let's call it OLD) in my `Datacenter` and wanted to rename it (into let's call it NEW)
1. Shutdown the VM in the WebUI -> then ssh into the machine.
2. `nano /etc/hosts` – replace OLD with NEW
3. `nano /etc/hostname` – replace OLD with NEW
4. `nano /etc/postfix/main.cf` – replace OLD with NEW
5. `reboot`
6. `cd /etc/pve/nodes`
7. `ls -alh` – I saw OLD and NEW dirs (both), but their contents did (obviously?) differ
8. `systemctl stop pve-cluster`
9. `pmxcfs -l`
10. `ls -alh` -> `ls: cannot open directory '.': Transport endpoint is not connected` -> just "go into" the dir again:
11. `cd /etc/pve/nodes && ls -alh`
12. `rm -rf NEW` – delete the "NEW" dir that was created after the reboot
13. `cp -R OLD NEW` -> `cp: cannot create regular file 'NEW/qemu-server/100.conf': File exists` – don't worry, the rest of the files should have been copied with no problems
14. `cp OLD/qemu-server/100.conf NEW/qemu-server/200.conf` – YES, change the name in the NEW copy (temporarily)
15. `cp -R OLD /root/OLD_backup` – make a backup just in case
16. `rm -rf OLD`
17. `reboot`
18. `systemctl stop pve-cluster`
19. `pmxcfs -l`
20. `mv /etc/pve/nodes/NEW/qemu-server/200.conf /etc/pve/nodes/NEW/qemu-server/100.conf`
21. `reboot`
22. `rm -rf /root/OLD_backup` – maybe remove the backup if everything works
Ooof, done
Thanks again to everyone in this thread –> this kind of info should be in the Wiki, but I guess I won't be able to add it, as I don't know if this is a "substantial change" and I'm pretty sure I'm not a user "with a long-standing account and post history in the community forum" (apparently the criteria to register to the wiki

). Good luck!