Jump to content

After upgrading my Mac OS to Mavericks, iReport quit working


d_s_little

Recommended Posts

  • Replies 5
  • Created
  • Last Reply

Top Posters In This Topic

There must be some change to the JVM on Mavericks that causes this.  You might check what version of java you have and potentially download a different  version of Java and see if that helps.  Let us know...obviously since Mavericks just came out, we didn't have a chance to test with it and it is not certified/supported on it, but it would be good to have a solution for folks anyway. :)

Link to comment
Share on other sites

After looking around a little more, the internet beings are claiming that Mavericks does not have a JVM installed and you may need to actually reinstall one.  It seems apple decided to delete java during the upgrade.  Go to a terminal and type the following and see what you get:  java -version

Link to comment
Share on other sites

Had the same issue after Mavericks upgrade.

Installed Java 1.7 and tried iReport 5.1.0 and 5.5.0 - same issue:

 

/var/log/system.log: com.apple.launchd.peruser.501[154] ([0x0-0x49049].Jaspersoft iReport Designer[1177]): Exited with code: 2

 

Searching further we found out it complaints about java not found.

"${jdkhome}/bin/java" on my system should be "${jdkhome}/Commands/java"

 

Some hacks in the following file fixed the the iReport start for me:

/Applications/Jaspersoft iReport Designer.app/Contents/Resources/ireport/platform9/lib/nbexec

 

< if [ ! -x "${jdkhome}/bin/java" ] ; then

> if [ ! -x "${jdkhome}/Commands/java" ] ; then

 

< eval ""$jdkhome/bin/java"" -classpath ""${updatercp}"" $jargs "-Dnetbeans.user="$userdir"" $updater_class "$args"

---

> eval ""$jdkhome/Commands/java"" -classpath ""${updatercp}"" $jargs "-Dnetbeans.user="$userdir"" $updater_class "$args"

489c494

< eval ${_NB_PROFILE_CMD} ""${jdkhome}/bin/java"" -Djdk.home=""${jdkhome}"" -classpath ""$cp""

---

> eval ${_NB_PROFILE_CMD} ""${jdkhome}/Commands/java"" -Djdk.home=""${jdkhome}"" -classpath ""$cp""

 

 

iReport 5.5.0 now seems to run fine.

Link to comment
Share on other sites

  • 2 months later...

iReport Designer 5.5.0 com jdk 7


No Mac OS X Maverick, altere o arquivo ireport.conf no diretorio /Applications/Jaspersoft iReport Designer.app/Contents/Resources/ireport/etc


Altere a linha  #jdkhome="/path/to/jdk"


para  jdkhome="/Library/Java/JavaVirtualMachines/jdk1.7.0_45.jdk/Contents/Home"

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×
×
  • Create New...