-
Website
http://sethbc.org -
Original page
http://sethbc.org/2008/12/09/install-glassfish-for-deployment-on-ubuntu-810/ -
Subscribe
All Comments -
Community
-
Top Commenters
-
dermotbrennan
1 comment · 1 points
-
sethbc
11 comments · 1 points
-
Branstrom
1 comment · 1 points
-
-
Popular Threads
a nice topic would be to find out if it is possible to use Jruby's Ahead-Of-Time compile feature with glassfish and rails.
One small thing though -
sudo useradd -r $GLASSFISH_USER -d /opt/$GLASSFISH_HOME
should be
sudo useradd -r $GLASSFISH_USER -d $GLASSFISH_HOME
right?
I also got this error when running ./glassfish-v3-prelude-unix.sh
Entering setup...
java.lang.UnsatisfiedLinkError: no Terminal in java.library.path
It turns out based on https://glassfish.dev.java.net/issues/show_bug.... that if you are installing on a system that doesn't have a GUI (as I was), that the installer won't work. I am guessing this is probably something they will fix in the final version but not in the prelude versions.
sudo chown $GLASSFISH_USER:$GLASSFISH_USER -R $GLASSFISH_HOME
http://gist.github.com/34348
revised install script:
http://gist.github.com/34346
1. download glassfish-v3-prelude-unix-ml.sh installation script
2. echo "License.license.ACCEPT_LICENSE=0" > v3-prelude-answer
3. sh glassfish-v3-prelude-unix-ml.sh -s -a v3-prelude-answer
Hope, this helps :)