Got it! Thank you everyone!
FYI - the hostnamectl command does not update the /etc/hosts file. You may want to follow these steps:
cat /etc/hostname ## review current hostname info
cat /etc/hosts ## review current hosts info
sudo hostnamectl set-hostname <new_machine_name> ## set new hostname
sudo nano /etc/hosts ## edit hosts file
## look for line 127.0.1.1 raspberrypi
## then change raspberrypi to <new_machine_name>
127.0.1.1 <new_machine_name>
## exit and save
sudo reboot
sudo nano ~/.node-red/settings.js
## look for //flowFile: ‘flows.json’
## then change to
flowFile: 'flows_raspberrypi.json'
## exit and save
From: Dave C-J
Sent: December 20, 2016 at 2:58:20 AM CST
To: node...@googlegroups.com
Subject: Re: [node-red] Re: Changing RaspPi hostname caused flows to disappear