Questions tagged [timeout]

In computing, a timeout is either an error condition or event that occurs when an event exceeds the time frame permitted to it, or the period of time allotted to a given event.

In computing, a timeout is either an error condition or event that occurs when an event exceeds the time frame permitted to it, or the period of time allotted to a given event.

For an example of an event being a timeout, a network timeout [error] occurs when a response is expected from a networked device, but not received within a specified time period.

As an example of a timeout being defined as a period of time, ftp servers often have idle timeouts, after which inactive connections are closed.

603 questions
0
votes
0 answers

How to check AWS cloudfront traffic limit? 504 server error

I have a website that handles ticket selling which opens once a year. Many peoples come to the website at a specific date and time. However, some users received 504 Status Code (Gateway Timeout) from AWS CloudFront .Some users can still register…
0
votes
1 answer

SSH connection timing out with Google Cloud

I'm pretty new to servers/cloud computing so please bear with me. Instance image: windows-server-1809-dc-core-for-containers-v20200908 My issue is that when I try to connect through SSH to my instance, the Putty client keeps timing out. But I can…
Pablo Derbez
  • 101
  • 1
0
votes
0 answers

Connection timed out (FRM-92103) with Oracle Forms 11g on Azure Windows Virtual Machine

We are running an Oracle database 19c with Oracle Forms 11g on Azure Windows VM. Our config is as follows: Azure Windows Virtual Machine Standard B4ms (4 vcpus, 16 GiB memory) Public IP address with an "idle timeout" of 30 minutes (maximum…
Xim
  • 53
  • 1
  • 6
0
votes
1 answer

IKev2 strongswan got deleting half open IKE_SA with x.x.x.x after timeout with iOS device

I installed an IKEv2 strongswan vpn server on ubuntu 18.04 and also I use a valid Let's encrypte CA for that. I want to use it on an application for iOS. So here is the IPSec.conf : config setup charondebug="all" # keep_alive=24h …
mohsen
  • 113
  • 1
  • 6
0
votes
1 answer

How can I troubleshoot an Apache subdomain timing out?

I have several subdomains on my server, all giving me timeouts when contacting from any http client (either in HTTP on 80 or HTTPS on 443, depending on the subdomain). For example : http://test.yosko.net When contacted directly from the same server,…
Yosko
  • 167
  • 2
  • 6
0
votes
2 answers

Why is curl failing to download from cache.ruby-lang.org when ping works?

I have an issue similar to this: Wget, Curl, Yum Fail but Ping works - CentOS 5 In my case, I have 2 Ubuntu 18.04 servers which are failing to download from cache.ruby-lang.org: curl -O https://cache.ruby-lang.org/pub/ruby/2.5/ruby-2.5.3.tar.bz2 -v …
afarley
  • 213
  • 2
  • 9
0
votes
1 answer

504 Gateway Time-out on NGINX Reverse Proxy even though the container is up

I have the following Docker setup: jwilder/nginx-proxy for the reverse proxy jrcs/letsencrypt-nginx-proxy-companion for SSL (Let's Encrypt) custom WildFly container as the endpoint My problem is that when visiting the website a 504 error gets…
crispyzlata
  • 1
  • 1
  • 1
0
votes
1 answer

Can no longer SSH to VM as before from GCP dashboard, WordPress site down

Edit: I have a 10GB VM. I’m thinking I’m out of space. Does this make sense? I have been working on a WordPress (deployed using GCP onto Debian 9 OS) site for the past week, after setting up an external static IP, and all was fine till this…
0
votes
1 answer

Why is NGINX timing out?

I have an application with about 200k users and am running a NGINX + Gunicorn(Python) server behind an AWS EC2 loadbalancer. I don't understand how my requests is always 4k/minute but only sometimes I get half of traffic being timeout issues. Most…
0
votes
1 answer

Puma & NGINX upstream timed out (110: Connection timed out)

Accessing Puma app running with systemd service behind Nginx proxy results in the following error in nginx error.log: *6 upstream timed out (110: Connection timed out) while reading response header from upstream, client: 1.2.3.4, server:…
Ilya Cherevkov
  • 153
  • 1
  • 1
  • 7
0
votes
0 answers

Website times out sporadically: ERR_TIMED_OUT and can't ssh into instance with nginx and EC2 setup

I am running a django app with nginx as webserver on an EC2 instance. The website gets a decent amount of API calls per minute depending on how many testpipelines I run. My problem is that the website times out sporadically. I can't reach it in the…
Micromegas
  • 231
  • 3
  • 12
0
votes
1 answer

timeout issues when connecting to local tomcat server with afraid.org dynamic dns

background i'm working on a very small team to update the css on a struts 2 website. i'm deploying my code to a tomcat server for testing, and the server pulls its data from an oracle database running in a centos virtualbox. needing a way to connect…
0
votes
2 answers

I just installed webmin on a Centos 8 machine and when I try to connect to localhost:10000 I get a timeout

I just installed webmin on a Centos 8 machine and when I try to connect to localhost:10000 I get a timeout. Any idea why this could be?
Jack Duldi
  • 19
  • 9
0
votes
0 answers

Website users often report ERR_CONNECTION_TIMED_OUT

Users are often reporting that they can't access to my website because of a timeout error. I have experienced that issue as well, and it resolves after waiting a couple of hours or by using a VPN. How can I find out why is it happening so often?…
Andres
  • 1
-1
votes
1 answer

Polling x amount of URL's every second with Java

Is it even possible to poll let's say 10,000 URL's every second? I do keep threading in mind with the following code: for (int i = 0; i < 10000; i++) { Executors.newScheduledThreadPool(10).scheduleWithFixedDelay(new Runnable() { …