Daily “green-check”
Fast validation when you first log in.
sudo nginx -t && sudo systemctl reload nginx
sudo systemctl status nginx --no-pager
sudo systemctl status docker --no-pager
sudo systemctl status tailscaled --no-pager
sudo systemctl status cloudflared --no-pager
df -h
free -h
uptime
docker ps
Daily
Ops
Status
Logs first
When something looks off, start here before changing anything.
# nginx
sudo tail -n 120 /var/log/nginx/error.log
sudo tail -n 120 /var/log/nginx/access.log
# cloudflared (systemd)
sudo journalctl -u cloudflared -n 120 --no-pager
# tailscale (systemd)
sudo journalctl -u tailscaled -n 120 --no-pager
# docker overview
docker ps
docker logs --tail=120 <container_name>
Logs
Triage
Troubleshooting