Recent content by agdsign

  1. A

    Error with update: /bin/sh: 1: /usr/share/proxmox-ve/pve-apt-hook: not found

    Thank you, you save my day! It's work for me, after broken upgrade from 6.4-15 to 7.3-3
  2. A

    Proxmox API for restoration of a vm backup-archive

    I found solution: post "/nodes/{node-name}/qemu" [ 'vmid' => $vmid, 'force' => 1, 'storage' => 'local', 'archive' => $path ]; $path like – "local-1Tb:backup/vzdump-qemu-104-2021_07_15-01_15_42.vma.zst"; 'force' is required for restore current VM
  3. A

    Proxmox API for restoration of a vm backup-archive

    Help me please! I can't find any solution… How can i restore existed VM using HTTP API? Using post request to 'nodes/{node}/qemu' with parameters 'archive' and 'vmid' i can create new VM from vma.zst file with unique ID, but can't restore herself It's possible? Or I must delete current VM and...
  4. A

    Can't access GUI webpage

    I found solution here – https://forum.proxmox.com/threads/lost-access-to-the-gui-after-ssl-certificates-deletion.58789/post-271194 – remove the files '/etc/pve/local/pveproxy-ssl.pem' and '/etc/pve/local/pveproxy-ssl.key' – run `pvecm updatecerts --force` – systemctl restart pveproxy
  5. A

    Can't access GUI webpage

    I have a same problem as topic starter… I was add new SSL to Proxmox and see alert something – "PVE need need to restart web server …", was click "OK" and after that GUI of Proxmox not accessible but I can connect over ssh and all VM still work
  6. A

    Can't delete user with name include '?' (and may be other special characters)

    I can create user with this code: $param = array( 'user_group' => 'Users', 'userid' => '6lUs3WcD0?9%', 'user_password' => '1234567890', ); $result = $px->post('/access/users', [ 'userid' => urlencode($param['userid']).'@pve', 'groups' => $param['user_group']...
  7. A

    Can't delete user with name include '?' (and may be other special characters)

    I'am using PHP API (curl) this code create user with any userid $result = $px->post('/access/users', [ 'userid' => '6lUs3WcD?0%9@pve', 'groups' => $param['user_group'], 'password' => $param['user_password'], ]); this dosn't work. can't create user...
  8. A

    Can't delete user with name include '?' (and may be other special characters)

    I was delete user from "/etc/pve/user.cfg" and "/etc/pve/priv/shadow.cfg", but think that ProxmoxVE need check userid on creation
  9. A

    Can't delete user with name include '?' (and may be other special characters)

    Hello. I was create new user with unique name via API – 6lUs3WcD0?9%@pve, but now i can't delete him… On creation process was not any errors, but on delete i have: Parameter verification failed. (400) 9%@pve: property is not defined in schema and the schema does not allow additional...