web-dev-qa-db-ja.com

curlにはタイムアウトがありますか?

これまでのところ、実際には何も見つかりませんでしたが、curlがまったくタイムアウトしないのは本当ですか?

 user@Host:~# curl http://localhost/testdir/image.jpg

testdir内の画像に対する要求を、それらの画像を即座に生成する別のApacheモジュールにリダイレクトしているので、私は尋ねています。画像が実際に準備され、要求しているクライアントに配信されるまで、最大15分かかる場合があります。

curlは常に待機しますか(または構成によって異なります)、それとも何らかのタイムアウトがありますか?

274
Preexo

はい。

タイムアウトパラメータ

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.hDEFAULT_CONNECT_TIMEOUTマクロに従って。

--max-timeのデフォルト値は存在しないようで、最初の接続が成功した場合、curlは応答を永久に待機します。

何を使う?

おそらく後者のオプション--max-timeに興味があるでしょう。あなたのケースでは900(15分)に設定してください。

オプション--connect-timeout60(1分)などに指定するのも良い方法です。そうでない場合、curlは、明らかにバックオフアルゴリズムを使用して、何度も接続を試みます。

367
scai

時間制限があります:/ 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.
18
perpetuity

より良い --max-time--speed-limitおよび--speed-timeオプション。要するに、 --speed-limitは、許容できる最低平均速度を指定し、--speed-timeは、転送がタイムアウトして中止されるまでに転送速度がその制限を下回ることができる時間を指定します。

13
Alex D

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
3
slm

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
0
Mike Q