1

Topic: Backup iredmail restore

I'm use iredOS 0.6 + MysQL

I am doing the backup iredmail
I supported the database with the following script http://iredmail.googlecode.com/hg/iRedM … p_mysql.sh,

I copied / var / vmail /
according to the following link.
http://www.iredmail.org/wiki/index.php? … ail.Server
Now. How to restore the database?
Do any script?
Greetings!

----

Spider Email Archiver: On-Premises, lightweight email archiving software developed by iRedMail team. Supports Amazon S3 compatible storage and custom branding.

2

Re: Backup iredmail restore

Restore the database on same server? It's just a backup SQL database file, you can restore it with a simple "SOURCE" command, for example:

$ mysql -uroot -p
mysql> USE roundcubemail;
mysql> SOURCE /path/to/backup/roundcubemail-xx.sql;

3

Re: Backup iredmail restore

ZhangHuangbin wrote:

Restore the database on same server? It's just a backup SQL database

thank you!!

import and export the database with phpmyadmin is valid?.

Best regards!
smile

4

Re: Backup iredmail restore

tuxtux wrote:

import and export the database with phpmyadmin is valid?.

Should be fine.

5

Re: Backup iredmail restore

ZhangHuangbin wrote:
tuxtux wrote:

import and export the database with phpmyadmin is valid?.

Should be fine.

Thanks!  Solved, works both ways.