これまで何も見つかりませんが、実際にはタイムアウトがまったくcurl
ありませんか?
user@host:~# curl http://localhost/testdir/image.jpg
testdir
画像に対する要求は、これらの画像を動的に生成する別々のApacheモジュールにリダイレクトするために尋ねます。画像が実際に準備され、要求された顧客に配信されるまでに最大15分かかることがあります。
常にcurl
待ってください(または構成によって異なります)。それともタイムアウトがありますか?
答え1
はい。
タイムアウトパラメータ
curl
--connect-timeout
との2つのオプションがあります--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.
デフォルト
ここ(Debianでは)の使用と指定された時間に関係なく、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