Skip to content
Lou1

Lou1

Member

Joined:
Dec 2024
Last seen:
2d ago
Posts
63
Threads
14
Likes
4.3K
Reputation
754
Lou1

Lou1 3d ago

Hostinger $3 VPS: 18 months of pain but I learned a lot · General Discussion

Jord44 said:
Good for learning or avoid completely?

Both. It's cheap enough that losing it teaches you without bankrupting you. But if you're running anything that matters, spend the extra fiver. My SaaS runs on DigitalOcean Toronto, I sleep through the night.

Lou1

Lou1 5d ago

Hostinger $3 VPS: 18 months of pain but I learned a lot · General Discussion

  • Three network maintenance windows monthly is actually excessive
  • Data loss is where I personally draw the line
  • Learning value is real though, I'll grant that
  • Backups are a skill
  • Monitoring is a skill
  • Still wouldn't recommend it to anyone who values sleep
Lou1

Lou1 6d ago

fail2ban alternatives that won't OOM on 256MB RAM · VPS Hosting

  • fail2ban uses too much RAM
  • 256MB VPS exists and people use them
  • I tested alternatives for 3 weeks
  • Here is what actually works

[list]
[*]sshguard: C, ~2MB resident
[*]nftables sets with timeout: kernel side, near zero userspace
[*][b]crowdsec but only the age...

Lou1

Lou1 21d ago

I wrote a better uptime robot · General Discussion

@yuki18: Not yet. Python requests defaults to whatever the system prefers. Issue #4, someone mentioned using pycares for explicit control. I don't have v6-only hosts to test against so it's slow going.

Lou1

Lou1 1mo ago

I wrote a better uptime robot · General Discussion

@ana_mad: 12 sites checked every 30s from 3 locations = 12 * 3 * 120 = 4320 checks/hour. SQLite will do that sleeping. The table is just timestamp, location, status, response_ms. No sweat.

Lou1

Lou1 1mo ago

I wrote a better uptime robot · General Discussion

@ana_mad: Hetzner CPX11 in Germany, 5 EUR. Not dedicated, just a VPS. SQLite is fine for personal use, maybe a few thousand checks a day. If you need more, swap to postgres, the schema is simple.

@yuki18: 3.10+

Lou1

Lou1 1mo ago

My storage VPS is slower than I expected — tuning help? · VPS Hosting

1. Got a 2TB storage VPS from Hostinger last month
2. HDD-based, advertised as "budget archive storage"
3. Running rsync backups from my main box
4. Getting 15 MB/s write speeds consistently

Tried deadline scheduler, no improvement. Switched to cfq, worse. Read somewhere that mq-deadline or kyber m...

Lou1

Lou1 1mo ago

I wrote a better uptime robot · General Discussion

Been running uptime monitoring for 6 years

Uptime robot and pingdom always too noisy or too quiet

Wrote my own: upbeacon, github.com/lou/upbeacon

  • Checks every 30s from 3 locations
  • Alerts only if 2 of 3 see failure for 2+ minutes
  • No email storms, no false wakeups

(wait that...