up vote 2 down vote favorite
2
share [g+] share [fb]

I have purchased a vps system recently for Java web development recently. However, I need to setup everything, configure apache, email etc. Are there any guide/reference book I can study to get these works done? I am going to install Jetty on Linux box.

Thanks.

link|improve this question
feedback

2 Answers

Jetty is very simple to get up and running AFTER you get Java installed.

Download the distribution and unpack it. Inside is a start.jar file which you invoke with "java -jar start.jar".

link|improve this answer
feedback

TO install Jetty i used:

$ wget http://dist.codehaus.org/jetty/jetty-6.1.24/jetty-6.1.24.zip
$ unzip jetty-6.1.24.zip
$ cp -R jetty-6.1.24 /opt/
$ cd /opt
$ ln -s /opt/jetty-6.1.24 jetty

To Run:

$ cd /opt/jetty
$ java -jar start.jar etc/jetty.xml

then open http://localhost:8080/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.