VNC to HP Microserver GEN 6 remote access card
10K+
As the card software for the HP Microserver GEN 6 remote access card is rather old, it only seems to work with Java 1.6, which is rather hard to get working now without something like an Windows XP virtual machine.
This provides access to either the KVM console or the media manager via a Ubuntu 12.04 docker image and vnc client
To run to get access to the KVM console
docker run \
-d \
--name kvm \
--rm \
-p 5902:5902 \
-e KVM_HOST=microserver \
-e KVM_USER=admin \
-e KVM_PASSWORD=secret \
-e KVM_DOMAIN=home \
-e KVM_SCRIPT=kvm \
-e VNC_PORT=5902 \
-e VNC_PASSWORD=secret \
-e VNC_RESOLUTION=800x600 \
-e KEYMAP=gb \
martinjohn/hp-kvm
To get access to the media manager
docker run \
-d \
--name media \
--rm \
-p 5902:5902 \
-e KVM_HOST=microserver \
-e KVM_USER=admin \
-e KVM_PASSWORD=secret \
-e KVM_DOMAIN=home \
-e KVM_SCRIPT=media \
-e VNC_PORT=5902 \
-e VNC_PASSWORD=secret \
-e VNC_RESOLUTION=800x600 \
-e KEYMAP=gb \
martinjohn/hp-kvm
Obviously you need to either pass through the port or run on the host network.
Variables defined are
Content type
Image
Digest
Size
139.9 MB
Last updated
almost 7 years ago
docker pull martinjohn/hp-kvm