Container Console Crashes Firefox

rpuglisi

Member
Sep 1, 2011
30
0
6
New Jersey
Selecting Proxmox Web Interface console for a container causes Firefox to crash. These are the messages from Firefox:

Add-ons: ubufox@ubuntu.com:0.9.3,{972ce4c6-7e08-4474-a285-3208198ce6fd}:10.0.2
BuildID: 20120216081259
CrashTime: 1331151654
EMCheckCompatibility: true
FramePoisonBase: 7ffffffff0dea000
FramePoisonSize: 4096
InstallTime: 1329499468
Notes: GLXtest process failed (received signal 11)
ProductName: Firefox
SecondsSinceLastCrash: 8758
StartupTime: 1331142907
Theme: classic/1.0
Throttleable: 1
URL: https://10.50.10.1:8006/?console=openvz&vmid=100&vmname=yaregtestct&node=Proxmox-Test
Vendor: Mozilla
Version: 10.0.2

This report also contains technical information about the state of the application when it crashed.

My system is:
pve-manager: 2.0-38 (pve-manager/2.0/af81df02)
running kernel: 2.6.32-7-pve
proxmox-ve-2.6.32: 2.0-60
pve-kernel-2.6.32-7-pve: 2.6.32-60
lvm2: 2.02.88-2pve1
clvm: 2.02.88-2pve1
corosync-pve: 1.4.1-1
openais-pve: 1.1.4-2
libqb: 0.10.1-2
redhat-cluster-pve: 3.1.8-3
resource-agents-pve: 3.9.2-3
fence-agents-pve: 3.1.7-1
pve-cluster: 1.0-23
qemu-server: 2.0-25
pve-firmware: 1.0-15
libpve-common-perl: 1.0-17
libpve-access-control: 1.0-17
libpve-storage-perl: 2.0-12
vncterm: 1.0-2
vzctl: 3.0.30-2pve1
vzprocps: 2.0.11-2
vzquota: 3.0.12-3
pve-qemu-kvm: 1.0-5
ksm-control-daemon: 1.1-1

Thanks,
Rich
 
Hi, do you use Ubuntu ?

If yes, Ubuntu is shipped by default with openjdk java version and not sun version




  1. Add the Canonical partner repository.
    sudo add-apt-repository "deb http://archive.canonical.com/ lucid partner"
  2. Install Sun Java JRE.
    sudo apt-get update
    sudo apt-get install sun-java6-jre sun-java6-fonts sun-java6-plugin
  3. Update system defaults to prefer Sun Java over OpenJDK.
    sudo update-alternatives --set java /usr/lib/jvm/java-6-sun/jre/bin/java
    sudo update-alternatives --set javaws /usr/lib/jvm/java-6-sun/jre/bin/javaws
    sudo update-alternatives --set mozilla-javaplugin.so /usr/lib/jvm/java-6-sun/jre/lib/*/libnpjp2.so
  4. If that fails, manually choose them from a list. Always choose the option containing “java-6-sun”.
    sudo update-alternatives --config java
    sudo update-alternatives --config javaws
    sudo update-alternatives --config mozilla-javaplugin.so
  5. Restart Firefox.
 
Hi Spirit,
Thanks a lot for the advice. I am running Ubuntu 10.10 and OpenJDK along with the Icedtea plugin. Switching to Sun Java resolved the problem.

FYI - I read where Oracle (Sun) Java 6 is no longer available to be distributed by Ubuntu, because of a license issue and that Oracle Java 7 is probably at this time not as fit for general use.

Richard