Hi @ariel,
We highly recommend you to create a server backup before doing any other modifications on it. You can get more information about this in the next link
https://docs.bitnami.com/google/faq/administration/backup-restore-server/
It looks like you are using a quite old version of ERPNext in an old server. You can either follow the process described in the official Google Cloud documentation linked below or migrate your Bitnami installation to a new server.
https://cloud.google.com/compute/docs/migrating-to-v1-metadata-server
Follow the next steps to migrate your Bitnami installation to a new server:
- SSH connect to your server
- Stop the Bitnami services and create a backup of the entire
/opt/bitnami
directory. Restart services after
sudo /opt/bitnami/ctlscript.sh stop
sudo tar -pczvf application-backup.tar.gz /opt/bitnami
sudo /opt/bitnami/ctlscript.sh start
- Start a new Bitnami ERPNext server, SSH connect and stop the running process there
sudo /opt/bitnami/ctlscript.sh stop
- Upload the
application-backup.tar.gz
file to your new server
https://docs.bitnami.com/google/faq/administration/upload-files/
- Move the current Bitnami installation to a different location
sudo mv /opt/bitnami /tmp/bitnami-backup
- Uncompress the Bitnami installation from the backup and start its services
sudo tar -pxzvf application-backup.tar.gz -C /
sudo /opt/bitnami/ctlscript.sh start
After that, your ERPNext should be properly running on your new instance. Please note that if you configured a domain name you will need to update your DNS records with the new server IP address or configure your new server with your current static IP address.
Hope it helps,
Gonzalo