Joseph Huckaby
Joseph Huckaby
Huh, I've never seen a core dump before. How strange. Is there a crash log? ``` /opt/cronicle/logs/crash.log ```
I've never heard of Cronicle core dumping before. Some internet research has suggested that this could be an OOM (out of memory) event on that server. Having 20 users watching...
Thanks, so it died due to signal 6 (SIGABRT). I can't find anything else useful in that core dump, alas. ### What Does Signal 6 (SIGABRT) Mean? Signal 6 (SIGABRT)...
Thank you for grabbing a coredump. That is really strange. I've never heard of anything like this happening before. I would say try downgrading your Node.js to v20 or v18....
You can do this with environment variables, which you can set with the docker `-e` switch. Example: ``` docker blah blah -e CRONICLE_secret_key="MySecretKey" -e CRONICLE_base_app_url="http://cronicle.mycompany.com" ``` Docs: https://github.com/jhuckaby/Cronicle/blob/master/docs/CommandLine.md#environment-variables
You could certainly write a [Plugin](https://github.com/jhuckaby/Cronicle/blob/master/docs/Plugins.md) to facilitate that. I should also mention that Cronicle v2 is going to have a very small "satellite" executable that can be installed with...
Just ran into this same thing. UGH! I guess we can monkey-patch console.log to call our own function, but what an ugly hack. Can somebody with a Twitter account contact...
Very sorry you ran into trouble. Sounds like you installed Node.js but not "NPM". This usually comes bundled with Node.js, but lately I've seen more and more reports of people...
Yeah, both servers need to be on the same "network" (LAN) in order to be visible to each other. Cronicle v1 opens connections in both directions, hence this requirement. Cronicle...
I've never heard of cronsun before. Cronicle v2 is redesigned to support more complex architectures, in that there is no longer the requirement for bidirectional network connections between master and...