NodeBB Dies
-
@julian
#! /bin/bash
# /etc/init.d/nodebbcase "$1" in start) echo "Starting NodeBB..." cd /home/nodebb/foorum ./nodebb start ;; stop) echo "Stopping NodeBB..." cd /home/nodebb/foorum ./nodebb stop ;; *) echo "Usage: /etc/init.d/nodebb {start|stop}" exit 1 ;; esac exit 0
-
Sorry for bringing up this old post, but I've been struggling with the problem for almost a month now. I've tried many things - rewriting the start script, checking the logs for any error output etc. etc., nothing has helped so far. So I started thinking, that maybe the small amount of RAM is the reason for those unusual ''crashes''. So without doubt, I went for a 1024MB DigitalOcean VPS. And indeed, this improved the situation, however the NodeBB still crashes every now and then, but not on a daily basis anymore.
So I'm thinking that maybe there is a memory allocation problem with NodeBB or just NodeJS? I'm on NodeBB 0.4.3, not on the latest build ofc.I'll do some tests and write back with some RAM allocation results.
-
@a_5mith It's harmless, especially if you're not using all that extra disk space in your droplet.
When we were running this forum on a $5 droplet, we also ran php-fastcgi and mysql. MySQL would run out of memory every couple days because we didn't have swap enabled.
Keep in mind that when Redis holds all of the db information in-memory, it also needs twice that amount when it tries to persist to disk. It makes a copy of the in-memory database, in memory (heh), and then pushes that to the
.rdb
file.