Your browser was unable to load all of the resources. They may have been blocked by your firewall, proxy or browser configuration.
Press Ctrl+F5 or Ctrl+Shift+R to have your browser try again.

Agent problem MacOSX mavericks #2615

vanderhu ·
Currently it seems to be not possible to start QuickBulld agent on MacOSx Mavericks with default jdk 1.7. You get following error message:

sh-3.2# ./agent.sh console
Running QuickBuild Build Agent...
wrapper | --> Wrapper Started as Console
wrapper | Java Service Wrapper Standard Edition 32-bit 3.5.12
wrapper | Copyright (C) 1999-2011 Tanuki Software, Ltd. All Rights Reserved.
wrapper | http://wrapper.tanukisoftware.com
wrapper | Licensed to PMEase Inc. for QuickBuild
wrapper |
wrapper | Launching a JVM...
wrapper | JVM exited while loading the application.
jvm 1 | Error: This Java instance does not support a 32-bit JVM.
jvm 1 | Please install the desired version.
wrapper | Reloading Wrapper configuration...
wrapper | Launching a JVM...
wrapper | JVM exited while loading the application.
jvm 2 | Error: This Java instance does not support a 32-bit JVM.
jvm 2 | Please install the desired version.
wrapper | Reloading Wrapper configuration...
wrapper | Launching a JVM...
wrapper | JVM exited while loading the application.
jvm 3 | Error: This Java instance does not support a 32-bit JVM.
jvm 3 | Please install the desired version.
wrapper | Reloading Wrapper configuration...
wrapper | Launching a JVM...
wrapper | JVM exited while loading the application.
jvm 4 | Error: This Java instance does not support a 32-bit JVM.
jvm 4 | Please install the desired version.
wrapper | Reloading Wrapper configuration...
wrapper | Launching a JVM...
wrapper | JVM exited while loading the application.
jvm 5 | Error: This Java instance does not support a 32-bit JVM.
jvm 5 | Please install the desired version.
wrapper | There were 5 failed launches in a row, each lasting less than 300 seconds. Giving up.
wrapper | There may be a configuration problem: please check the logs.
wrapper | <-- Wrapper Stopped

Is this known problem or should it be filed as an issue? Used version is: 5.0.37
  • replies 4
  • views 2836
  • stars 0
robinshen ADMIN ·
This is a bug and we will get it fixed in next patch release in this week. Please monitor below issue:
http://track.pmease.com/browse/QB-1858
reidrissi ·
Hello,
I tried the fix from QB-1858
# Resolve the architecture
if [ "$DIST_OS" = "macosx" ]
then
OS_VER=`sw_vers | grep 'ProductVersion:' | grep -o '[0-9]*\.[0-9]*\.[0-9]*'`
DIST_ARCH="universal"
if [[ "$OS_VER" < "10.5.0" ]]
then
DIST_BITS="32"
else
{code}

but steel have the issue, I upgraded my server and agent to 5.1.40.

my OS_VER is 10.10.1 the script consider it as less than 10.5.0 !!

I made a tweek pending for a solution, I forced DIST_BITS to 64.

Regards,
Rachid
robinshen ADMIN ·
This issue should have been fixed in the just released QB6.
reidrissi ·
Thank you very much.
I upgraded to QB 6.0, the issue is fixed ^^

Best,
Rachid