检查服务器是否启动

检查服务器是否启动
  1. 创建目录logs(用于输出日志)
  2. 创建脚本IsTheServerUp.bash
  3. 编写脚本来检查服务器是否启动
  4. echo结果记录到文件中
  5. 使用curl命令检查服务器
  6. 使用上述规则来编写你的 bash
    • 用于curl从服务器请求网页
    • 提供--output/dev/null选项 + 参数来抑制输出。
    • 检查退货状态 ( $?)
      • 如果状态0(成功)
      • 如果没有(0)错误消息
    • 包括状态代码和日期/时间戳。
    • 记录输出的消息到mylog.log

我当前不起作用的代码:

#! bin/bash
if curl -s --head  --request GET http://opx.com/opx/version | grep "200 OK"    > /dev/null && curl -s --head --request GET http://oss.com/version | grep "200   OK" > /dev/null;
exit 0

相关内容