我有一种感觉,我错过了明显的,但没有成功的man [curl|wget]或谷歌(“http”使如此糟糕的搜索词)。我正在寻找一个快速和肮脏的修复我们的网络服务器之一,经常失败,返回状态码500与错误消息。一旦发生这种情况,就需要重新启动。

由于根本原因似乎很难找到,我们的目标是快速修复,希望这将足以弥补时间,直到我们真正修复它(服务不需要高可用性)

建议的解决方案是创建一个每5分钟运行一次的cron作业,检查http://localhost:8080/。如果返回状态码为500,则web服务器将重新启动。服务器将在一分钟内重新启动,因此不需要检查已经在运行的重新启动。

所讨论的服务器是ubuntu 8.04最小安装,只安装了足够运行当前所需的包。在bash中执行该任务没有硬性要求,但我希望它能在这样一个最小的环境中运行,而不需要安装任何解释器。

(我非常熟悉脚本,命令/选项将http状态代码分配给一个环境变量就足够了——这是我一直在寻找的,但没有找到。)


当前回答

curl --write-out "%{http_code}\n" --silent --output /dev/null "$URL"

的工作原理。如果没有,则必须按回车键查看代码本身。

其他回答

下面是我的实现,它比以前的一些答案更详细一些

curl https://somewhere.com/somepath   \
--silent \
--insecure \
--request POST \
--header "your-curl-may-want-a-header" \
--data @my.input.file \
--output site.output \
--write-out %{http_code} \
  > http.response.code 2> error.messages
errorLevel=$?
httpResponse=$(cat http.response.code)


jq --raw-output 'keys | @csv' site.output | sed 's/"//g' > return.keys
hasErrors=`grep --quiet --invert errors return.keys;echo $?`

if [[ $errorLevel -gt 0 ]] || [[ $hasErrors -gt 0 ]] || [[ "$httpResponse" != "200" ]]; then
  echo -e "Error POSTing https://somewhere.com/somepath with input my.input (errorLevel $errorLevel, http response code $httpResponse)" >> error.messages
  send_exit_message # external function to send error.messages to whoever.
fi

虽然接受的响应是一个很好的答案,但它忽略了失败场景。如果请求中有错误或连接失败,Curl将返回000。

url='http://localhost:8080/'
status=$(curl --head --location --connect-timeout 5 --write-out %{http_code} --silent --output /dev/null ${url})
[[ $status == 500 ]] || [[ $status == 000 ]] && echo restarting ${url} # do start/restart logic

注意:这稍微超出了请求的500状态检查,以确认curl甚至可以连接到服务器(即返回000)。

从它创建一个函数:

failureCode() {
    local url=${1:-http://localhost:8080}
    local code=${2:-500}
    local status=$(curl --head --location --connect-timeout 5 --write-out %{http_code} --silent --output /dev/null ${url})
    [[ $status == ${code} ]] || [[ $status == 000 ]]
}

得了500分的测试:

failureCode http://httpbin.org/status/500 && echo need to restart

测试获取错误/连接失败(即000):

failureCode http://localhost:77777 && echo need to start

测试没有得到500分:

failureCode http://httpbin.org/status/400 || echo not a failure

我不喜欢这里把数据和状态混合在一起的答案。 发现了这个: 添加-f标志使curl失败,并从标准状态变量$?

https://unix.stackexchange.com/questions/204762/return-code-for-curl-used-in-a-command-substitution

我不知道它是否适合这里的每个场景,但它似乎符合我的需求,我认为它更容易使用

我还没有在500代码上测试过,但它可以在200、302和404等其他代码上运行。

response=$(curl --write-out '%{http_code}' --silent --output /dev/null servername)

注意,——write-out提供的格式应该加引号。 根据@ibai的建议,添加——head来进行head请求。这将在检索成功时节省时间,因为页面内容不会被传输。

这可以帮助评估HTTP状态

var=`curl -I http://www.example.org 2>/dev/null | head -n 1 | awk -F" " '{print $2}'`
echo http:$var