Node keeps crashing after 45mins (ish) cnode error. ./cnode.sh line 16: 1346 killed.
Any help would be much appreciated, it happened after I tweaked toplogy.json with get_buddies.sh. It has worked once in-between though
It seems like if I restart node its touch and go whether it’ll run past 45 mins mark. if it gets over 1hr its golden thereafter?
any help would be much appreciated
Hello Michael,
Can you please describe the commands within ./cnode.sh on line 16?
Also, please review and provide any pertinent data within your logs
Thank you!
HI ADAFrog,
line 16 refers to port…
–port xxxx
I’ll check the logs. Any specific logs i should check? what are the locations?
in /opt/cardano/cnode/logs i see Archive, node-0-xxxxxxx and node-0
thanks,
Hi Michael,
You’ll have to look - you might check /var/log/syslog
You on mainnet or testnet? Relay or block producer?
ah, they can be kernel related I guess. I’ll do some digging.
Mainnet - Relay
Its working again now. intermmitent regarding reboots. could running it in tmux have any bearing?
Aryan
18 August 2020 22:59
6
Getting the same issue on my relay after 11 mins (ish)
Aryan
DId you run cnode.sh in TMUX session? i just wonder if tmux could force crash?
It isn’t a TMUX issue - just a hunch. Crashed regardless
Aryan
18 August 2020 23:27
9
I did run cnode.sh in TMUX. Now I removed ledger and Volatile folders, to rebuild. Has been running since 19 mins without crashing at 11 mins but hasn’t synced yet.
Make sure you guys have libsodium squared away:
Thanks ADAfrog!
Here is how I implemented that solution.
cd
nano .bashrc
scroll to bottom and paste these two lines
export LD_LIBRARY_PATH="/usr/local/lib:$LD_LIBRARY_PATH"
export PKG_CONFIG_PATH="/usr/local/lib/pkgconfig:$PKG_CONFIG_PATH"
Press control-x to exit
Press y to save
Press enter to confirm save
nano .bash_profile
scroll to the bottom and paste
test -f ~/.bashrc && source ~/.bashrc
Press control-x to exit
Press y to save
Press enter to confirm save
sudo reboot
Reboot co…