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
2
votes
1 answer

Apache and jetty

I have a VPS in wiredtree where i would like to run a scala/lift application with jeety in a server that is running a LAMP stack. I want to use comet actors so i will be using the "long http hack" and i dont know if that would be important. So what…
DFectuoso
  • 53
  • 6
2
votes
2 answers

Ubuntu Daemon Best Practices?

I have a RingoJS webserver (runs atop Jetty) that is part a an Apache reverse proxy setup. I would like multiple Ringo processes to run autonomously in the background, startup automatically on reboot, etc. Basically, the same as Apache or…
Scott Klarenbach
  • 569
  • 2
  • 8
  • 20
2
votes
1 answer

Jetty (HTTP Servlet Server in Java) unexpectedly shuts down

A Jetty application is deployed on a server of mine, but keeps on terminating, with little understandable evidence as to why. Any help in resolving this would be greatly appreciated. Details: OS: Slackware Linux 13.1 Linux 2.6.32.16 running as…
Dale
  • 21
  • 2
2
votes
1 answer

Jetty Virtual Hosts

I'm trying to configure Jetty with multiple domains, the problem I'm facing is that Jetty is running withing another server product called SmartfoxServer, so I'm not really sure if i can actually configure it the way i like. This is my…
iddqd
  • 171
  • 1
  • 6
2
votes
2 answers

Starting jetty service from SSH

I am trying to start jetty service from ssh using the command: ssh -t myhost "sudo /sbin/service jetty6 start" All works well, service comes up but after the command terminates and the connection closes down, the Jetty service goes down, too. If…
Sasha O
  • 121
  • 1
  • 4
2
votes
1 answer

NullPointerException on jetty 7 startup with jetty deployment descriptor

I'm getting the following error when I start Jetty: 2010-03-01 12:30:19.328:WARN::Failed startup of context WebAppContext@15ddf5@15ddf5/webapp,null,/path/to/jetty-distribution-7.0.1.v20091125/webapps-plus/webapp.war With this commandline: java -jar…
Draemon
  • 527
  • 1
  • 5
  • 15
2
votes
2 answers

Apache reverse proxy not working and generates a 404 error

I have an installation of Shiboleth that runs on Jetty 9. Through Apache I have a reverse proxy to the 8080 port of Jetty which serves the Shiboleth instance. When I curl http://localhost:8080/idp/shibboleth in the console, the instance responce is…
pierostz
  • 73
  • 1
  • 7
1
vote
2 answers

Java crash due to native memory allocation map failure, despite n

A Java 11 application is crashing in a manner that from my understanding is impossible with the settings I have. The application in question runs on Amazon Linux 2, utilizing Java 11. The server is a cloud EC2 with 4 GB of ram. The server has no…
Michael Long
  • 21
  • 1
  • 3
1
vote
0 answers

Can't find jetty config file on Fedora 28

I installed jetty8 on fedora 28, but I do not know where is the configuration file for the server. In Ubuntu the jetty8 configuration file is /etc/default/jetty8. To install jetty I've used: dnf install jetty8
jeugenio
  • 11
  • 2
1
vote
1 answer

Can’t connect securely to this page

Facing an issue while checking my application compatibility with IE11 in windows10 but it is throwing the below exception while accessing the URL. Can’t connect securely to this page This might be because the site uses outdated or unsafe TLS…
adithya
  • 11
  • 1
  • 1
  • 3
1
vote
1 answer

No protocol handler was valid for the URL /url. If you are using a DSO version of mod_proxy

Trying to set up a load balancer using Apache 2.4.x on Windows. Error: No protocol handler was valid for the URL /path/. If you are using a DSO version of mod_proxy, make sure the proxy submodules are included in the configuration using…
Himani Singla
  • 11
  • 1
  • 2
1
vote
0 answers

Jetty Crashes After Let's Encrypt Certificate Import

I'm using an application that comes bundled with Java 1.8.0_77-b03 and Jetty 9.3.3.v20150827. Everything works great until I import my Let's Encrypt certificate into the Jetty JKS. Once I do that, Jetty crashes on start with the error: Exception:…
eeach
  • 11
  • 2
1
vote
0 answers

How best to secure a Java web service via Jetty that we are now making public-facing?

We have a web service that currently runs only internally within a network and there is no access outside the network. This web service is written in Java and runs through a Jetty servlet engine. It is a bare bones web service and there is little to…
1
vote
1 answer

nginx doesn't pass outer request to localhost

Jetty server runs on localhost:8080 and successfully responses when I make requests via curl (putty): curl -H "Content-Type: application/json" -X POST -d '{"message":"Hi"}' http://localhost:8080 I have following nginx.conf configuration: server{ …
Ildar Zaripov
  • 121
  • 1
  • 5
1
vote
2 answers

Redirecting port 8080 to port 80 - how to add in /etc/sysconfig/iptables file?

On CentOS 7 Linux (acting as LAMP - and not "firewall/gateway") I have created a custom systemd service for running embedded Jetty at port 8080 as user nobody: [Unit] Description=WebSocket Handler…
Alexander Farber
  • 714
  • 4
  • 17
  • 38