Search results

  1. Denny Fuchs

    API debug: Vagrant-proxmox and LXC = 400 Bad Request

    hi, sorry to disturbing you again. I have a very small question: do you remember which IP address vagrant wants to use for SSH and doing the rest? In my case: Vagrant uses the nodes address and a high port, instead of the IP configured with :public_network ip: 1.2.3.4 ... I forked the...
  2. Denny Fuchs

    API debug: Vagrant-proxmox and LXC = 400 Bad Request

    Yeahh ! Works now ! very very big thanks to you ! :-D I hope, that the git changes merges fast into the master :-)
  3. Denny Fuchs

    API debug: Vagrant-proxmox and LXC = 400 Bad Request

    I used now "root@pam" for testing and it works :-), but what is the problem with my user Vagrant ? I can create a LXC container manual as this user. So, maybe I found a bug? The role that inherits vagrant user is "Administrator".
  4. Denny Fuchs

    API debug: Vagrant-proxmox and LXC = 400 Bad Request

    hi, debug like a PRO :-D created a stunnel ... and removed https ;-) E.....@.@.....2"..2".i"...|j.2L.P..V.>..POST /api2/json/nodes/pmox01/lxc HTTP/1.1 Accept: */*; q=0.5, application/xml Accept-Encoding: gzip, deflate Csrfpreventiontoken: 57176E25:SZDUtTe4PRV7gPLt5O1uUGttaDA Cookie...
  5. Denny Fuchs

    API debug: Vagrant-proxmox and LXC = 400 Bad Request

    hi, took your Vagrant file first 1:1 (changed user/pw/url) and nearly the same: INFO runner: Running action: machine_action_up #<Vagrant::Action::Warden:0x00000002f9d308> INFO warden: Calling IN action...
  6. Denny Fuchs

    API debug: Vagrant-proxmox and LXC = 400 Bad Request

    hi, hmm, harder than I tought .... I compiled yesterday the plugin from the Github repo (with patches) ... it works with Qemu (tested again for sure :) ..), but it breaks with LXC. Maybe the problem is the underlying ZPool, or my Vagrantfile isn't O.K. Can you please give me your file?
  7. Denny Fuchs

    API debug: Vagrant-proxmox and LXC = 400 Bad Request

    hi, I changed it in ~/.vagrant.d/gems/gems/vagrant-proxmox-0.0.10/lib/vagrant-proxmox/action/create_vm.rb I will try it, with the git and all patched version :-)
  8. Denny Fuchs

    API debug: Vagrant-proxmox and LXC = 400 Bad Request

    Ok, changed the line ... should I also change anything in the Vagrantfile? Vagrant.configure('2') do |config| config.vm.provider :proxmox do |proxmox| proxmox.endpoint = 'https://pmox01:8006/api2/json' proxmox.user_name = 'xxxxxxxx' proxmox.password = 'yyyyyyyy' proxmox.vm_id_range =...
  9. Denny Fuchs

    API debug: Vagrant-proxmox and LXC = 400 Bad Request

    The fast way: wget https://releases.hashicorp.com/vagrant/1.8.1/vagrant_1.8.1_x86_64.deb && sudo dpkg -i vagrant_1.8.1_x86_64.deb vagrant plugin install vagrant-proxmox Download default LXC template in /var/lib/vz/template/cache -> debian-8.0-standard_8.0-1_amd64.tar.gz mkdir vagrant && cd...
  10. Denny Fuchs

    API debug: Vagrant-proxmox and LXC = 400 Bad Request

    I think, you mean the missing lines: proxmox.vm_storage = 'pve-container' proxmox.vm_disk_size = '5G' It was missing in my Github question, but adding it to the Vagrantfile doesn't help. So I have now: Vagrant.configure('2') do |config| config.vm.provider :proxmox do |proxmox|...
  11. Denny Fuchs

    API debug: Vagrant-proxmox and LXC = 400 Bad Request

    It gets a few updates the last weeks, so it is a "littlebit" supported. The plugin uses the JSON URL.
  12. Denny Fuchs

    API debug: Vagrant-proxmox and LXC = 400 Bad Request

    hi, we want to use Vagrant to create VMs on our Proxmox 4.1 cluster (with ZFS). So we use the vagrant-proxmox plugin, which works with KVM. If I try to get the same working with LXC, than I get a "400 Bad Request". I have no idea, how to debug on the Proxmox side. Is there a debug option, to...
  13. Denny Fuchs

    [SOLVED] Own YubiKey Server API: http URL works, https not

    hi, it works now: https://bugzilla.proxmox.com/show_bug.cgi?id=916
  14. Denny Fuchs

    Proxmox 4.0, ZFS: Failed to boot cannot import rpool: wrong timing or something miss?

    I have this problem too, on two hosts: 00:14.0 USB controller: Intel Corporation C610/X99 series chipset USB xHCI Host Controller (rev 05) 00:16.0 Communication controller: Intel Corporation C610/X99 series chipset MEI Controller #1 (rev 05) 00:16.1 Communication controller: Intel Corporation...
  15. Denny Fuchs

    [#875] kvm: how to enable "features: hidden state=on" ?

    hi Wolfgang, thank you. We need it to get a software working for tests. Otherwise it fails, because of the hypervisor things. One question: we need it only for one VM and one boot. Is it possible to create a *.xml and fire up the VM? Update: it seems, that I've got it working. I've just...
  16. Denny Fuchs

    [SOLVED] Own YubiKey Server API: http URL works, https not

    hi, we have a own YubiKey server and tried to login via the USB key, but it works only for HTTP and not for HTTPS. Is there a reason for that?
  17. Denny Fuchs

    [#875] kvm: how to enable "features: hidden state=on" ?

    hi, since ProxMox uses not *.xml: how can I activate: <domain type='kvm> ... <features> ... <kvm> <hidden state='on'/> </kvm> </features> I know that it is possible to use "args" in *.conf ... so I tried: args: '-features hidden state=on' but: kvm: -features...