imsbackup to remote server

HiCan anybody tell me the imsbackup command to take the backup to the remote systemThanks in Advance
[121 byte] By [bsnl-nib] at [2007-11-26 11:21:58]
# 1
I'm sorry, I have no idea what "backup to the remote system" means to you.If you could provide some detail about what it is you're trying to do, perhaps I can help.
jay_plesset at 2007-7-7 3:37:19 > top of Java-index,E-Mail, Calendar, & Collaboration,Sun Java System Messaging Server...
# 2

Hi Jay

my message store is 240GB and we are in process of upgrading our messaging system with the new set of

servers so i want to take a back of all mailboxes to the

new server which is in different location.

1) i want to take a complete backup of message store

to the server which is placed in different location.

bsnlnib at 2007-7-7 3:37:19 > top of Java-index,E-Mail, Calendar, & Collaboration,Sun Java System Messaging Server...
# 3
imsbackup -f -is the start of your command. That tells imsbackup to stream the output to the std i/o. Now, redirect it to wherever you want it, such as a NFS mount, or suchimsbackup -f - .... > someplace you want the file.
jay_plesset at 2007-7-7 3:37:19 > top of Java-index,E-Mail, Calendar, & Collaboration,Sun Java System Messaging Server...
# 4
Hi,Assuming u enable rsh or ssh (without password)mailsrv is remote mailserver userimsback -f - yourinstance_or_group | rsh/ssh mailsrv@newserver "imsrestore -f -"Should workmsg_admin
msg_admin at 2007-7-7 3:37:19 > top of Java-index,E-Mail, Calendar, & Collaboration,Sun Java System Messaging Server...
# 5
Hi,I successfully tested this out :imsbackup -f - /INSTANCE/GROUP | ssh mailsrv@newserver " imsrestore -f -" It migrates the mailboxes of the entire group.But, prior to this you have to migrate the LDIF enteries of the users in the groupmsg_admin
msg_admin at 2007-7-7 3:37:19 > top of Java-index,E-Mail, Calendar, & Collaboration,Sun Java System Messaging Server...
# 6

Hi,

One little speed-up that is useful when using ssh to transfer large amounts of data is to use the "-c blowfish" option. This uses the faster but less secure blowfish algorithm to encrypt the data. On a switched local network though it should be plenty.

i.e.

imsbackup -f - /INSTANCE/GROUP | ssh -c blowfish mailsrv@newserver " imsrestore -f -"

Regards,

Shane.

shane_hjorth at 2007-7-7 3:37:19 > top of Java-index,E-Mail, Calendar, & Collaboration,Sun Java System Messaging Server...