View Single Post
  #6 (permalink)  
Old 05-12-2010, 01:13 PM
EmOperations EmOperations is offline
Junior Member
 
Posts: 9
Default

Hurrah! We have successfully gotten 6.0.6 running on our 10.5.8 Macs. Many thanks to rs232c for the tip about the Java keystore password change (i.e. cacerts). :-)

We're going with the "set it back to Sun's default" approach; here's a scriptlet we're using for clean installs:

Code:
if keytool -list -keystore /System/Library/Frameworks/JavaVM.framework/Resources/Deploy.bundle/Contents/Home/lib/security/cacerts -storepass changeit >/dev/null; then
  echo "Password is good."
else
  echo "Changing password back."
  sudo keytool -storepasswd -new changeit -keystore /System/Library/Frameworks/JavaVM.framework/Resources/Deploy.bundle/Contents/Home/lib/security/cacerts -storepass changeme
fi
Reply With Quote