Questions tagged [jetty]

Jetty is a widely used async java based http server and servlet engine supporting WebSockets and SPDY protocols.

Jetty is a widely used java based http server and servlet engine with additional support for WebSockets and SPDY protocols.

Current versions are:

163 questions
3
votes
2 answers

Jetty 7 gives HTTP ERROR: 503 - service unavailable

I am getting the error 503 when I try to start Jetty. Does anyone know what this might mean. I am running Jetty 7 and starting it with the start.jar file. If anyone knows how to configure Jetty to work on Windows, that would be helpful. Thanks.
Ankur
  • 2,379
  • 7
  • 22
  • 24
3
votes
1 answer

adding response header to Jetty config file

I am trying to add a response header to the Jetty configuration the following command, Access-Control-Allow-Origin: * Ok so this Jetty webserver is the base on which Geoserver is running. I asked this question in the GIS forum but no one was able…
Sam007
  • 135
  • 1
  • 6
3
votes
1 answer

Inserv warning missing LSB tags and overrides

I installed Jetty 8 to my Debian server. When I added jetty to update-rc.d, it gives following warning. What is this and should I care about it? insserv: warning: script 'jetty.sh' missing LSB tags and overrides
newbie
  • 355
  • 2
  • 4
  • 16
3
votes
1 answer

Should Jetty always be behind another webserver (eg nginx, apache) to improve security?

For a long time I've always run nginx in front of jetty to do load balancing. However, I have a new project where I will be using HAProxy to do the load balancing and was wondering if I should have HAProxy send connections directly to Jetty or if I…
John Smith
  • 33
  • 4
3
votes
1 answer

Two applications bind to the same socket?

C:\Users\bacadmin>netstat -anov | find ":80 " TCP 0.0.0.0:80 0.0.0.0:0 LISTENING 3976 TCP 0.0.0.0:80 0.0.0.0:0 LISTENING 3808 TCP [::]:80 [::]:0 LISTENING 3976 The one with the process id of 3976 is a Jetty that is configured to start with…
Vic
  • 95
  • 3
  • 13
3
votes
2 answers

Why is my Jetty server logging DNS error?

I have a Xen virtual machine where I've installed a Jetty 7.4.5, to run an instance of Hudson. It was working fine for about a month. Today we've noticed that Hudson was not able to generate builds. The problem was that we have no more space on…
Alexandre
  • 215
  • 4
  • 9
3
votes
1 answer

How to simply host a webpage with Jetty?

How can I host a single "index.html" through Jetty? My idea is to put a webpage that calls an application with JNLP I really don't know how to serve the page at the first place! (or if it is possible through Jetty) thanks!
Hernán Eche
  • 135
  • 1
  • 7
3
votes
3 answers

How to change base path of Solr example?

I've followed the Solr tutorial, but the URL they make you use is: http://localhost:8983/solr/ What is the most simple way to change this URL to: http://localhost:8983/foobar/
arussell84
  • 233
  • 3
  • 8
3
votes
4 answers

Configuring Jetty as a service - how?

As I'm using Debian, and as the packages in the package manager aren't quite up-to-date, I'm forced to do a manual installation. I downloaded the latest version as a .tar.gz file, and extracted it to /opt. Now I'm unsure on what to do next. I need…
Trollhorn
  • 203
  • 3
  • 10
3
votes
2 answers

Deploy Jetty as port 80 daemon on Linux

I'm curious what techniques you Linux admin gods are using to manage your Jetty deployments. I come from a Windows Server background so I'm still getting used to all of this. I've been looking for a good solution for deploying Jetty instances as…
McKAMEY
  • 635
  • 1
  • 6
  • 14
3
votes
1 answer

Apache2 + Solr: Tomcat or Jetty?

I have an (Ubuntu 10.4) server running Apache2 web server. So far so good, I have a few extensions setup just the way I hoped for, I'm happy. But now I'd like to try out Apache Solr because I'd rather work out the quirks to setup a nice robust…
wildpeaks
  • 465
  • 2
  • 11
3
votes
2 answers

how to enable access to port from network in ubuntu?

when i "netstat -an | grep LISTEN" i have line: tcp6 0 0 127.0.0.1:24030 :::* LISTEN i want it to be tcp6 0 0 ::24030 :::* LISTEN in other words i want to have…
Marek
  • 33
  • 1
  • 1
  • 3
2
votes
3 answers

Configuring a Unified Communications Certificate for many virtual hosts running in Jetty

I have a single IP with Jetty serving up X sites on port 80. Basically you can sign up for our service, then point your domain www.mycompany.com to that IP, and Jetty will serve up your custom site. I would like to add SSL support for all sites. To…
rcampbell
  • 1,035
  • 4
  • 14
  • 24
2
votes
2 answers

Any reference / book on setting up Jetty on Linux box?

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…
janetsmith
  • 21
  • 3
2
votes
1 answer

Password protect app in jetty

I am testing a webapp (.war) running in Jetty 7. For demo purposes I want to run this on a public URL, however I would like not to have the whole world (if they happen to come across the URL) be able to see it. Is there a way to make Jetty require…
JohnW
1 2
3
10 11