Creating a KVM Machine via SSH

  • Thread starter Thread starter Hupfi10
  • Start date Start date
H

Hupfi10

Guest
Hello Community,

how can i create a KVM machine via ssh with the following specs:
2 GB RAM
100 GB HDD
2,5 GHz
1 CPU Socket
Image is in /var/lib/vz/template/iso/winsrv.iso
Image contains a win server 2008 r2 with sp2
I have a license key for that version :)

Kind Regards
and thanks for help

Markus
 
I don't know, but I can just suggest you to tunnel 8006 port through ssh and use https://localhost:8006 in your browser to do it "remotely" using your local browser.
Like:
Code:
ssh  -L 8006:192.168.1.20:8006  -L 5900:192.168.1.20:5900 -L 5901:192.168.1.20:5901 myuser@66.77.88.99
where 192.168.1.20 is the private IP of your remote server
 
Jeah, i couldn't use that solution because i use on the server a php based daemon wich changes the apache root directory.
So can anyone provide the command ?
 
Please replace <SERVERIP> and <VMID>:

# ssh <SERVERIP> qm create <VMID> -memory 2048 -ide0 local:2 -cdrom local:iso/winsrv.iso
 
There is a new question :)

The KVM machine startet, etc..

but were are the vnc logins...
Or how could i define a IP wich should be used, when i cant create a virtual mac for the ip wich should be used.
Its a part of a subnet wich is routed to the root server.
I read about a "routed mode" but i dont find a solution how to "bind" a routed ip to one kvm machine, when i cant use the proxmox webinterface.

Thanks alot for your help :)