Every time the power is removed from the board, the current date is lost and it goes back to some default value.
When you load the IDE, it it fetches the date through your browser and sets it on the board.
If you want to use it without the IDE, you can use the date command to set the date from the terminal instead. From the host, you can run this one-liner:
ssh root@bela.local "date -s \"`date '+%Y%m%d %T %z'`\""
this runs date '+%Y%m%d %T %z' on the host to get the correct date, then logs onto the board and sets the date viadate -s.