惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

D
Docker
小众软件
小众软件
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
酷 壳 – CoolShell
酷 壳 – CoolShell
Apple Machine Learning Research
Apple Machine Learning Research
月光博客
月光博客
人人都是产品经理
人人都是产品经理
大猫的无限游戏
大猫的无限游戏
V
V2EX
阮一峰的网络日志
阮一峰的网络日志
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - Franky
WordPress大学
WordPress大学
有赞技术团队
有赞技术团队
Hugging Face - Blog
Hugging Face - Blog
Jina AI
Jina AI
博客园 - 聂微东
S
SegmentFault 最新的问题
量子位
宝玉的分享
宝玉的分享
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园_首页

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
My site went down for a few hours yesterday and my users ...
Anguishe · 2026-05-05 · via DEV Community

Anguishe

It happened to me.

My site — bashsnippets.xyz — had been down for six hours before I knew
about it. I found out because a reader emailed me. Not because I checked.
Not because I had monitoring. Because someone else had to tell me.

That's the kind of thing that sits with you.

The fix took 20 minutes to build. Here's exactly what I wrote and why
every piece of it matters.


The problem with checking manually

The natural instinct is to just open a browser and load the page.
But that has two failure modes:

  1. You only check when you remember to
  2. You don't check at 2am when it actually goes down

What you want is automated, logged, and running while you sleep.


Start with the one-liner

Before building the full script, understand the core command:

curl -o /dev/null -s -w "%{http_code}" https://yoursite.com

Enter fullscreen mode Exit fullscreen mode

Run it. It prints one number. That number is your site's HTTP status code.

Here's what each flag does — and this is worth understanding
because you'll use these flags for a lot more than uptime checking:

-o /dev/null — tells curl to discard the response body entirely.
You don't need the HTML. You only need the status code.
Without this flag, curl dumps the entire page to your terminal.

-s — silent mode. Suppresses the progress bar and error messages.
Without this, curl prints download stats you don't need.

-w "%{http_code}" — write-out format. Tells curl to print only
the HTTP status code after the request completes.
This is the only output you care about.

Result: just the number. Nothing else. Clean, parseable, scriptable.

$ curl -o /dev/null -s -w "%{http_code}" https://bashsnippets.xyz
200

Enter fullscreen mode Exit fullscreen mode


Status codes you need to know

Code Meaning What to do
200 Up and healthy Nothing
301/302 Redirect — usually fine Check it's intentional
404 Page not found Check your URL
503 Server error — site is down Investigate immediately
000 DNS failure / unreachable Your server may be completely offline

The full script

Now wrap it in logic that tells you what the number means:

#!/bin/bash

CHECK="✓"
CROSS="✗"

URL="https://bashsnippets.xyz"
STATUS=$(curl -o /dev/null -s -w "%{http_code}" "$URL")

if [ "$STATUS" -eq 200 ]; then
  echo "$CHECK $URL is up (HTTP $STATUS)"
else
  echo "$CROSS $URL returned HTTP $STATUS — check it"
fi

Enter fullscreen mode Exit fullscreen mode

The $CHECK and $CROSS variables aren't required — you could hardcode
the symbols directly — but defining them at the top makes it trivial
to change the output format later and keeps the echo lines readable
at a glance.

Save this as uptime.sh in your home directory.


Make it executable

chmod +x ~/uptime.sh

Enter fullscreen mode Exit fullscreen mode

chmod +x adds execute permission to the file. Without this,
bash treats it as a plain text file and refuses to run it.
This is the step people forget. Every time.

Test it manually before scheduling anything:

./uptime.sh
# ✓ https://bashsnippets.xyz is up (HTTP 200)

Enter fullscreen mode Exit fullscreen mode


Schedule it with cron

A script you run manually is still manual monitoring.
The goal is automation — the script checks your site while you sleep.

Open your crontab:

crontab -e

Enter fullscreen mode Exit fullscreen mode

Add this line:

*/5 * * * * ~/uptime.sh >> ~/uptime.log 2>&1

Enter fullscreen mode Exit fullscreen mode

Breaking this down:

*/5 * * * * — run every 5 minutes. The */5 means "every 5th
minute of every hour of every day." Change to */1 to test it faster.

~/uptime.sh — the script to run. The ~/ expands to your
home directory — safer than a relative path.

>> ~/uptime.log — append output to a log file.
Using >> instead of > means each result adds to the file
rather than overwriting it. You want a history, not just the last result.

2>&1 — redirect stderr to stdout so errors also get logged.

Save and exit. Cron confirms: crontab: installing new crontab


Watch it run in real time

tail -f ~/uptime.log

Enter fullscreen mode Exit fullscreen mode

tail -f watches a file and prints new lines as they're added.
Open this in a second terminal after setting up cron.
Within a minute you'll see the script run on its own —
no input from you, no trigger, just cron firing the script
and the result appearing in the log automatically.

That moment where the second line appears on its own —
that's the confirmation that automation is actually working.


The full copy-paste version

#!/bin/bash

CHECK="✓"
CROSS="✗"

URL="https://yoursite.com"   # ← change this to your site
STATUS=$(curl -o /dev/null -s -w "%{http_code}" "$URL")

if [ "$STATUS" -eq 200 ]; then
  echo "$CHECK $URL is up (HTTP $STATUS)"
else
  echo "$CROSS $URL returned HTTP $STATUS — check it"
fi

Enter fullscreen mode Exit fullscreen mode

Cron line to add with crontab -e:

*/5 * * * * ~/uptime.sh >> ~/uptime.log 2>&1

Enter fullscreen mode Exit fullscreen mode

Full reference page with all variations:
bashsnippets.xyz/snippets/check-if-website-is-up.html


I post a new copy-paste bash script every week at bashsnippets.xyz.
All free. No signups. @BashSnippets on YouTube if you want to see these in 30-second form.

How do you monitor your sites? I'm genuinely curious what the rest of you are running 👇