Search results

  1. G

    "pct listsnapshot" strange output

    Thanks for you answer :) I indeed have a huge amount of snapshots, since my script broke a while ago. This weekend I ended up with this: pct listsnapshot $ctID| grep "daily_$year" 2>/dev/null | tr -cs '[[:digit:]]\n' ' ' |awk '{print $1}' > zfs_list_$ctID_$year.lst (visually check the output...
  2. G

    Migrating VM via private IP instead of public IP

    Thanks for the very concise answer :D
  3. G

    "pct listsnapshot" strange output

    Greetings I have a cleanup script based on "pct listsnapshot" which stopped working a while ago. While running manually, I found this output: `-> daily_20181123 2018-11-23 04:30:07 no-description `-> daily_20181124 2018-11-24 04:30:07 no-description `->...
  4. G

    Local node times out

    Thanks for your answer. It's not a network problem (I can manage all nodes from the "grey" one), more something at the CT supervisor level, as I cannot do a "pct list" locally in ssh. Maybe I can restart a deamon, but I'm not sure which one...
  5. G

    API browse "execute" returns error

    Any progress on this? I'm still interested in API automation :)
  6. G

    Migrating VM via private IP instead of public IP

    So, no possibility to configure the SSH port?
  7. G

    Local node times out

    Greetings I have a 6-nodes cluster running Proxmox 6.3.3. When I connect on a GUI, all nodes are green, except one, which has a little grey "?". I can connect on this node: on the GUI, I see the same thing (i.e. the local node is "?", all other nodes are green and can be managed). With the CLI...
  8. G

    (zfs) VM disk flexible as CT disk?

    Thanks for your answer. My need is not about the (inside) system, but more like a data disk, so maybe a mountpoint? I don't really understand how these work.
  9. G

    (zfs) VM disk flexible as CT disk?

    Greetings My cluster has many CT based on ZFS and I'm used to "grow" CT disks from the Proxmox GUI (I understand "grow" as "change size capping"). I recently had to grow a VM disk and realized that the VM has internally formatted it as LVM, so resizing is not automatic. Is there a way to have a...
  10. G

    Migrating VM via private IP instead of public IP

    (also for the embedded terminal)
  11. G

    Migrating VM via private IP instead of public IP

    Thanks! I've never seen this option before. Is it possible to specify a custom port for ssh? I don't like to leave it at 22.
  12. G

    Migrating VM via private IP instead of public IP

    Greetings All nodes in my cluster have a public IP (on vmbr0) and a private (10.10.x.x on vmbr4) IP ; the cluster have been created with these private IPs, as I can see by running `pvecm status`. However, when I try to use the GUI to migrate a VM from a node to another, it fails and the error...
  13. G

    API browse "execute" returns error

    OK no problem, I just noticed it so I reported it :) I'm in the process of rationalizing the processes so I'm browsing the remote control possibilities (such as using Rundeck). Thanks for your answer!
  14. G

    API browse "execute" returns error

    Greetings I'm exploring the API at `https://pve.proxmox.com/pve-docs/api-viewer/index.html` When I click "execute", I see an error in the console: ``` apidoc.js:42583 Uncaught TypeError: Cannot read property 'properties' of undefined ```
  15. G

    GUI Login with no cert?

    Yes, the cert just expired, and the user can override the warning for the main page, but the ajax requests are still blocked.
  16. G

    GUI Login with no cert?

    Greetings The https certificate of one my nodes expired yesterday and I noticed something: in the GUI login form, the menu "realm" is mandatory, but its content is loaded by an ajax request, which fails because of the bad cert. Thus it's not possible to login. Am I missing something? Regards
  17. G

    ZFS Snapshot hangs

    The GUI show: Error: failed to sync container namespace
  18. G

    ZFS Snapshot hangs

    Hello Community I have a cron job like this: for ct in /etc/pve/local/lxc/*.conf; do ct=$(basename "$ct") ctID="${ct%.*}" echo "Snapshot $snapname for $ctID" /usr/sbin/pct snapshot $ctID $snapname done which has been running for years. A few days ago I...