For Normal Installation:-
Login to the server where Fedena is installed. You have to login as the Root user .
Where mysql_username is the username given while creating the database and database_name is the name of the database

You can see the dump database (dump.sql) if you list the files as shown-

For installation within Docker:-
Login to the server where Fedena is installed. After that login to the Application docker container .
Login to the server where Fedena is installed. You have to login as the Root user .
Following is the command to take a database back up of the application-
mysqldump -u'mysql_username' -p 'database_name' > dumpdatabase.sql
mysqldump -u'mysql_username' -p 'database_name' > dumpdatabase.sql
Where mysql_username is the username given while creating the database and database_name is the name of the database

You can see the dump database (dump.sql) if you list the files as shown-

For installation within Docker:-
Login to the server where Fedena is installed. After that login to the Application docker container .
Following is the command to take a database back up of the application-
mysqldump -u'mysql_username' -p 'database_name' -h'host_ip'> dumpdatabase.sql
Where mysql_username is the username given while creating the database and database_name is the name of the database and host_ip is the host machine ip.