Recent content by g0ha

  1. G

    [SOLVED] 2 hosts with same sub-domain

    Hi, i have 2 hosts, that i want to backup with PBS (with pbs-client). Their hostnames (hostname -f output): 1. db.host1.com 2. db.host2.com Inside PBS, hostnames cut to their sub-domains "db" and second server cant backup because error like "db!=db". Have PBS some workarounds for this case?
  2. G

    [TUTORIAL] How to install Proxmox Backup Client under Ubuntu%

    What about ubuntu 18 and ealier? root@u18:~# cat /etc/issue Ubuntu 18.04.5 LTS \n \l root@u18:~# apt update Hit:1 http://ru.archive.ubuntu.com/ubuntu bionic InRelease Get:2 http://ru.archive.ubuntu.com/ubuntu bionic-updates InRelease [88.7 kB] Get:3...
  3. G

    [SOLVED] /cluster/resources restrictions

    Thanks for answer, i want to get maxmem, mem, disk and cpu counters from under unpriveleged user, what permissions i shoud give to user?
  4. G

    [SOLVED] /cluster/resources restrictions

    Hi! Noted something strange: accoding to description: Required permission: Accessible by all authenticated users. But then not privileged user reads this, it gets [{'type': 'node', 'status': 'online', 'id': 'node/pve2', 'level': '', 'node': 'pve2'}] while admin gets normal output like this...
  5. G

    REST API connection error

    Hi, i have tha same issue with proxmoxer, succesfully "except" it with: from requests import exceptions ... except exceptions.ConnectionError as e: pass It seems that sometimes proxmox do not have time to answer. That is, a control command was sent but no response was received. At the same...
  6. G

    All VMs locking up after latest PVE update

    Thank you! 12h after fix update... normal fly
  7. G

    Move single vm backup to another datastore

    Thanks for answer, i want to move single vm backup to another datastore.
  8. G

    Move single vm backup to another datastore

    Hi, we have a bit single nodes of PVE, because of this some VMID crossing. I undestand that correct solution is to rename crossing VMID, but what i can do without doing that? To prevent rewrite same vmid backup on one datastore every pve have different username. But if i try to backup VM from...
  9. G

    [SOLVED] lxc config via api (PUT problem)

    lol, ist blow my mind, tupically its return task ID, but there only null
  10. G

    [SOLVED] lxc config via api (PUT problem)

    curl -v --insecure -X PUT --header 'Authorization: PVEAPIToken=root@pam!test=UUID' -d onboot=1 "https://pve1:8006/api2/json/nodes/pve1/lxc/107/config" * Trying 10.1.1.1... * TCP_NODELAY set * Connected to pve1 (10.1.1.1) port 8006 (#0) * ALPN, offering h2 * ALPN, offering http/1.1 *...
  11. G

    [SOLVED] lxc config via api (PUT problem)

    Hi! Stuck on trying to change lxc config via api, example: curl -Ss --insecure -X PUT --header 'Authorization: PVEAPIToken=root@pam!test=UUID' --data-urlencode onboot=1 "https://pve1:8006/api2/json/nodes/pve1/lxc/107/config"|jq '.' { "data": null } Problem only with this PUT method, other...