如何知道连接被拒绝抛出了卷曲

how to know connection refused threw curl

在 shell 脚本中,我必须通过 shell 脚本中的 curl 命令将某些服务调用为 url。在此,如果服务不是 运行,则 curl 表示连接被拒绝,我如何获取此异常并在另一台机器上调用服务 运行。

您可以检查 curl 的退出状态。例如:

curl -I -A "Chrome" -L "http://localhost:8080"
curl: (7) Failed connect to localhost:8080; Connection refused
[[ $? -eq 7 ]] && curl -I -A "Chrome" -L "http://localhost:9090"

您可以通过curl 查看进程退出代码。仅供参考 http://curl.haxx.se/libcurl/c/libcurl-errors.html

curl  "http://www.my.damn.unreachable.server.com:9090"
if [ "$?" = "7" ]; then 
    echo 'connection refused or cant connect to server/proxy';
fi