지금까지 아무것도 찾을 수 없지만 실제로 curl
시간 초과가 전혀 없습니까?
user@host:~# curl http://localhost/testdir/image.jpg
testdir
이미지에 대한 요청을 이러한 이미지를 동적으로 생성하는 별도의 Apache 모듈로 리디렉션하기 때문에 묻습니다 . 이미지가 실제로 준비되어 요청 고객에게 전달되기까지 최대 15분이 소요될 수 있습니다.
항상 curl
기다리십시오(또는 구성에 따라 다름). 아니면 시간 초과가 있습니까?
답변1
예.
시간 초과 매개변수
curl
--connect-timeout
와 의 두 가지 옵션이 있습니다 --max-time
.
매뉴얼 페이지를 인용하면 다음과 같습니다.
--connect-timeout <seconds>
Maximum time in seconds that you allow the connection to the
server to take. This only limits the connection phase, once
curl has connected this option is of no more use. Since 7.32.0,
this option accepts decimal values, but the actual timeout will
decrease in accuracy as the specified timeout increases in deci‐
mal precision. See also the -m, --max-time option.
If this option is used several times, the last one will be used.
그리고:
-m, --max-time <seconds>
Maximum time in seconds that you allow the whole operation to
take. This is useful for preventing your batch jobs from hang‐
ing for hours due to slow networks or links going down. Since
7.32.0, this option accepts decimal values, but the actual time‐
out will decrease in accuracy as the specified timeout increases
in decimal precision. See also the --connect-timeout option.
If this option is used several times, the last one will be used.
기본값
여기(데비안에서는) 사용 및 지정된 시간에 관계없이 2분 후에 연결 시도가 중지됩니다 --connect-timeout
. 하지만 기본 연결 시간 초과 값은 다음과 같습니다.5 분DEFAULT_CONNECT_TIMEOUT
홍중 의 말에 따르면라이브러리/connections.h.
에 대한 기본값은 --max-time
존재하지 않는 것으로 보이며 curl
초기 연결이 성공하면 응답을 영원히 기다립니다.
무엇을 사용해야 합니까?
당신은 후자의 옵션에 관심이 있을 수 있습니다 --max-time
. 상황에 따라 900
(15분) 으로 설정하세요.
(1분)과 같이 --connect-timeout
옵션 을 지정하는 것도 좋은 생각일 수 있습니다. 60
그렇지 않으면 curl
일종의 백오프 알고리즘을 사용하여 계속해서 연결을 시도합니다.
답변2
시간 제한이 있습니다: /usr/bin/timelimit - 프로세스의 절대 실행 시간을 효과적으로 제한합니다.
Options:
-p If the child process is terminated by a signal, timelimit
propagates this condition, i.e. sends the same signal to itself.
This allows the program executing timelimit to determine
whether the child process was terminated by a signal or
actually exited with an exit code larger than 128.
-q Quiet operation - timelimit does not output diagnostic
messages about signals sent to the child process.
-S killsig
Specify the number of the signal to be sent to the
process killtime seconds after warntime has expired.
Defaults to 9 (SIGKILL).
-s warnsig
Specify the number of the signal to be sent to the
process warntime seconds after it has been started.
Defaults to 15 (SIGTERM).
-T killtime
Specify the maximum execution time of the process before
sending killsig after warnsig has been sent. Defaults to 120 seconds.
-t warntime
Specify the maximum execution time of the process in
seconds before sending warnsig. Defaults to 3600 seconds.
On systems that support the setitimer(2) system call, the
warntime and killtime values may be specified in fractional
seconds with microsecond precision.
답변3
--max-time
보다 나은 --speed-limit
옵션 --speed-time
. 즉, --speed-limit
허용할 최소 평균 속도를 지정하고 --speed-time
전송 시간이 초과되어 중단되기 전에 전송 속도가 해당 제한 미만으로 유지될 수 있는 기간을 지정합니다.
답변4
BASH4+의 여러 솔루션
# -- server available to check via port xxx ? --
function isServerAvailableNC() {
max_secs_run="${3}"
if timeout $max_secs_run nc -z ${1} ${2} 2>/dev/null >/dev/null; then
#echo "${1} ✓"
true
else
#echo "${1} ✗"
return
fi
}
# -- server available to check via port xxx ? --
# -- supported protocols (HTTP, HTTPS, FTP, FTPS, SCP, SFTP, TFTP, DICT, TELNET, LDAP or FILE) --
#/usr/bin/curl -sSf --max-time 3 https://ifwewanted.to.confirm.https.com/ --insecure
function isServerAvailableCURL() {
max_secs_run="${3}"
proto="http://"
if [ ! -z ${2} ] || [ ${2} -gt 80 ] ;then
proto="https://"
fi
if /usr/bin/curl -sSf --max-time "${max_secs_run}" "${1}" --insecure 2>/dev/null >/dev/null; then
#echo "${1} ✓"
true
else
#echo "${1} ✗"
false
fi
}
사용 예:
특정 포트가 필요한 경우 NC를 권장합니다.
host="1.2.3.4"
if isServerAvailableCURL "$host" "80" "3";then
check_remote_domain_cert "$host"
fi
host="1.2.3.4"
if isServerAvailableNC "$host" "80" "3";then
check_remote_domain_cert "$host"
fi