これまでのところ、実際には何も見つかりませんでしたが、curl
がまったくタイムアウトしないのは本当ですか?
user@Host:~# curl http://localhost/testdir/image.jpg
testdir
内の画像に対する要求を、それらの画像を即座に生成する別のApacheモジュールにリダイレクトしているので、私は尋ねています。画像が実際に準備され、要求しているクライアントに配信されるまで、最大15分かかる場合があります。
curl
は常に待機しますか(または構成によって異なります)、それとも何らかのタイムアウトがありますか?
はい。
curl
には、--connect-timeout
と--max-time
の2つのオプションがあります。
マンページからの引用:
--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)では、--connect-timeout
で指定された時間に関係なく、2分後に接続の試行を停止しますが、デフォルトの接続タイムアウト値は5分lib/connect.h のDEFAULT_CONNECT_TIMEOUT
マクロに従って。
--max-time
のデフォルト値は存在しないようで、最初の接続が成功した場合、curl
は応答を永久に待機します。
おそらく後者のオプション--max-time
に興味があるでしょう。あなたのケースでは900
(15分)に設定してください。
オプション--connect-timeout
を60
(1分)などに指定するのも良い方法です。そうでない場合、curl
は、明らかにバックオフアルゴリズムを使用して、何度も接続を試みます。
時間制限があります:/ 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.
より良い --max-time
は--speed-limit
および--speed-time
オプション。要するに、 --speed-limit
は、許容できる最低平均速度を指定し、--speed-time
は、転送がタイムアウトして中止されるまでに転送速度がその制限を下回ることができる時間を指定します。
MacOSにcoreutilsがインストールされている場合は、そのパッケージに含まれているGNU timeoutコマンドを使用できます。GNUツールにはすべてg
なので、CLIはgtimeout
になります。
gtimeout --help
Usage: gtimeout [OPTION] DURATION COMMAND [ARG]...
or: gtimeout [OPTION]
Start COMMAND, and kill it if still running after DURATION.
$ gtimeout 1s curl -I http://www.google.com/
HTTP/1.1 200 OK
Date: Wed, 31 Oct 2018 03:36:08 GMT
Expires: -1
Cache-Control: private, max-age=0
Content-Type: text/html; charset=ISO-8859-1
P3P: CP="This is not a P3P policy! See g.co/p3phelp for more info."
Server: gws
X-XSS-Protection: 1; mode=block
X-Frame-Options: SAMEORIGIN
Set-Cookie: 1P_JAR=2018-10-31-03; expires=Fri, 30-Nov-2018 03:36:08 GMT; path=/; domain=.google.com
HttpOnly
Transfer-Encoding: chunked
Accept-Ranges: none
Vary: Accept-Encoding
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