I have installed centos7, and how can I backup rocket.Chat`s user data

How to backup and restore in centos7

In CentOS system.

I am based on this: https://docs.rocket.chat/installation/manual-installation/centos For installation.

How to backup and restore data?

Such as user data!

To backup all mongodb databases:

sudo mongodump --out /backup/db/<backup_name>

-> /backup/db/ will be the path destination

To restore

sudo mongorestore /backup/db/<backup_name>

thank you! good luck