Search results

  1. P

    proxmox doesnt like read-only nfs

    That worked with the nfs server still read only. thanks!
  2. P

    proxmox doesnt like read-only nfs

    have read-only shared nfs storage for iso images. got this trying to view content, mkdir /mnt/pve/bootiso/template: Read-only file system at /usr/share/perl5/PVE/Storage/Plugin.pm line 794 (500)
  3. P

    Mount VMA File

    if the answer is to rename the image, and your a developer taking requests, then please re-invent that wheel. it should be easy to add images to a storage pool and arbitrarily attach and detach them between guests. or, at least move them between guests. but then, youd have a guest dedicated to...
  4. P

    Mount VMA File

    How do you do this? i have not been able to find the rest api call or gui commands to attach or detach an existing disk image. or, in my case, ceph rbd.
  5. P

    moving rbd disks between kvm

    is it possible to move an rbd disk between kvms from the command line or with the rest api? i mostly use pvesh.
  6. P

    HA and auto start failure. missing something?

    can you recommend a way to test this with kvm/libvirt? would it be easier to test this with proxmox running in proxmox on a physical host?
  7. P

    HA and auto start failure. missing something?

    made a test cluster with kvm on libvirt, 3 proxmox nodes, 3 ceph nodes, and one guest to test on. live migration works fine. added the guest to HA under datacenter in the HA tab. verified that its "managed by HA" in the summary and has the option "start at boot". tried a clean shutdown (from the...
  8. P

    Need help with 4-nodes cluster (2 HA domains)

    make a small, reliable, quorom node. something from soekris or logicsupply with no moving parts. it only purpose is to hold quorom. sure, it can fail. but its cheap, doesnt take much space, and is less likely to fail than server nodes.
  9. P

    automated / preseed pxe install / provisioning of proxmox itself

    Is there a way to automate a proxmox install and/or pxe boot the installer? for example preseeding?
  10. P

    GPG error: invalid sig

    Must have have installed/updated at a bad time. did a fresh install on a new vm and it works fine now.
  11. P

    GPG error: invalid sig

    #apt-get update ... W: GPG error: http://ftp.us.debian.org wheezy Release: The following signatures were invalid: BADSIG 8B48AD6246925553 Debian Archive Automatic Signing Key (7.0/wheezy) <ftpmaster@debian.org>
  12. P

    pxe boot provisioning of proxmox itself

    Has anyone set up automated provisioning (install and setup) of proxmox itself? something like juju, foreman, razor etc? is there anything to be aware of while trying to?
  13. P

    Docker containers, new interesting project

    no, its for making application containers to run on servers. you make your app with whatever libraries and support it needs, make a docker container and ship it off to production or servers. any server that can run docker, can run your app. docker can run on openvz. thus, proxmox can run docker...
  14. P

    Docker containers, new interesting project

    docker already supports openvz http://www.infoq.com/news/2014/03/docker_0_9
  15. P

    Proxmox VE Ceph Server released (beta)

    too bad. was also interested in connecting to existing storage.
  16. P

    qm console? serial console access

    can qm have a console option? use case is automated setup,testing etc. ive done this in the past putting the serial console in a unix socket, and connecting with minicom and expect. (screen is easier, but now i use virsh)
  17. P

    accessing Linux guests through a serial port?

    I came looking for this as well. My use case is vm setup automation with expect scripts through the console. For implementation, you can make a unix socket and use screen or redirect it with socat. at least for my use, the alternate is making a seperate network with a helper vm, set up from...