mail backup and res...
 
Notifications
Clear all

mail backup and restore

14 Posts
7 Users
2 Likes
1,322 Views
(@tolyanich)
Joined: 2 years ago
Posts: 4
Topic starter  

How can i backup and restore mails? i cant find parameters in web


   
Quote
(@arman)
Admin
Joined: 3 years ago
Posts: 374
 
Posted by: @tolyanich

How can i backup and restore mails? i cant find parameters in web

Carbonio will have an integrated backup system. Soon you can find more information on the Carbonio documentation webpage.

This post was modified 2 years ago by Arman Khosravi

   
ReplyQuote
(@tolyanich)
Joined: 2 years ago
Posts: 4
Topic starter  

@arman can are we try this function now? can are we install carbonio backup on 22.3.1_ZEXTRAS?


   
ReplyQuote
(@arman)
Admin
Joined: 3 years ago
Posts: 374
 
Posted by: @tolyanich

@arman can are we try this function now? can are we install carbonio backup on 22.3.1_ZEXTRAS?

Unfortunately not. Only Zextras Carbonio has this functionality which is not yet released (as opposed to Zextras Carbonio CE, which doesn't).


   
ReplyQuote
dominix
(@dominix)
Joined: 11 years ago
Posts: 129
 

So, if I understand correctly, there will be no "zextras suite for Carbonio CE" as there is for Zimbra OSE. Am I right ?

Or is it possible to buy some "zextras suite (backup, chat, mobility, HSM) for carbonio CE ?

it is not clear what carbonio CE will provide/support as admin tools.

please clarify this point.


   
ReplyQuote
(@dbayer)
Joined: 7 years ago
Posts: 9
 

If only Carbonio comes with backup/restore and Carbonio CE does NOT, then how do we migrate from Zimbra to Carbonio?

 

You need some way to move your data into Cabronio CE.

 

Thanks,

Daniel


   
ReplyQuote
(@arman)
Admin
Joined: 3 years ago
Posts: 374
 
Posted by: @dbayer

If only Carbonio comes with backup/restore and Carbonio CE does NOT, then how do we migrate from Zimbra to Carbonio?

 

You need some way to move your data into Cabronio CE.

 

Thanks,

Daniel

Hi Daniel,

We will eventually prepare some articles and documentations about migrations to Carbonio CE Ricci will be available for users,  but today our main focus is to complete different components and rigorously test Carbonio CE.


   
phoenix and phoenix reacted
ReplyQuote
(@dbayer)
Joined: 7 years ago
Posts: 9
 

@arman Thanks for the reply. I look forward to trying out the migration process when it's available.


   
ReplyQuote
(@jdavasco)
Joined: 1 year ago
Posts: 3
 

Hi, today Carbonio CE have an integrated backup system?


   
ReplyQuote
(@arman)
Admin
Joined: 3 years ago
Posts: 374
 

Posted by: @jdavasco

Hi, today Carbonio CE have an integrated backup system?

Hi @jdavasco,

No Carbonio CE does not have an integrated backup system. Such functionalities as a restore and backup system, high availability, and advanced storage management are only available in Zextras Carbonio, a different product specially designed for large-scale enterprises.

 


   
ReplyQuote
 MAX
(@max)
Joined: 9 months ago
Posts: 69
 

In Carbonio CE, use external backup services. There are no built-in tools.


   
ReplyQuote
(@jdavasco)
Joined: 1 year ago
Posts: 3
 

@max, , could you recommend me a tool for extrenal backup services?


   
ReplyQuote
 MAX
(@max)
Joined: 9 months ago
Posts: 69
 

@jdavasco, i use Proxmox Backup Server to back up both virtual machines and Linux servers.


   
ReplyQuote
(@sigtrap)
Joined: 5 months ago
Posts: 17
 

The script I use for full backup is below.

It hopefully takes a full backup of Carbonio. But it works on old Zimbra, NOT TESTED with Carbonio.

Restoring on old Zimbra you just took the full tar file and restored it to /opt/zimbra and then installed Zimbra.

If you have the full directory and the LDAP backup (with mdb_copy) of a Carbonio installation can you install Carbonio after restoring the files to /opt/zextras ?

 

backup-full-carbonio.sh

#!/bin/bash
# Run as root
datevar=`date +%Y%m%d%H%M`

# Destination folder. In this example /opt/backups/zextras
mybakdir="/opt/backups/zextras/${datevar}"
mkdir -p $mybakdir
mkdir -p $mybakdir/ldap_bak

# Copy everything but not LDAP
rsync --delete -aHK --exclude 'data.mdb' /opt/zextras $mybakdir

# Backup LDAP
/opt/zextras/common/bin/mdb_copy /opt/zextras/data/ldap/mdb/db $mybakdir/ldap_bak

# Stop Carbonio and backup the locked files
su - zextras -c "/opt/zextras/bin/zmcontrol stop"
/bin/sync

rsync --delete -aHK --exclude 'data.mdb' /opt/zextras $mybakdir

# Start Carbonio and move create a tar file. In this example to /mnt/smb/zextras/
su - zextras -c "/opt/zextras/bin/zmcontrol start"
tar -cf /mnt/smb/zextras/zextras-${datevar}.tar ${mybakdir}

 


   
ReplyQuote