Unsolved
This post is more than 5 years old
21 Posts
0
4163
March 15th, 2010 08:00
how to integrate with a script, sourceone backup with Legato networker 7.6?
Hi , is there somebody that already done any script for usinng Legato Networker for backup Sourceone components?(Master-Worker-Native Archive)
many thanks
No Events found!
Al Smith1
45 Posts
0
April 2nd, 2010 11:00
Page 418 of the Admin guide states how to backup the SourceOne System.
Gary_Reardon
2 Intern
•
272 Posts
0
April 12th, 2010 07:00
I typically create a batch file for pause / resume and point to the appropriate scripts.
From Networker follow the documentation for running a command before and after a job to point to these batch files.
sconway2
4 Posts
0
August 4th, 2012 21:00
Really great replies that did not answer the original question. Way to help out! Start networker remote exec service on master and workers with the domain emcsourceone account or whatever you called it. on NMC put emcsourceone account in Administrators group. user=emcsourceone,domain=yourdomain.com
make sure your pre and post comamnd scripts start with "nsr" so nsrprecmd.bat or nsrprecmd.cmd nsrpostcmd.bat or nsrprecmd.cmd
in the group .res file on master server located in nsr/res put:
type: savepnpc;
precmd: "C:\\ES1_Backup\\nsrprecmd.cmd";
pstcmd: "C:\\ES1_Backup\\nsrpostcmd.cmd";
timeout: "12:00:00";
my group name is EMC-SourceOne so .res file is named EMC-SourceOne.res
copy the 32bit or the 64bit cscript to c:\ES1_Backup or whichever folder you have the backup vbs scripts in.
nsrprecmd.cmd file put:
cd \
cd \ES1_Backup
cscript ES1_ActivityBackupSuspend.vbs
nsrpostcmd.cmd file put:
cd \
cd \ES1_Backup
cscript ES1_ActivityResume.vbs
stop remote exec on master delete tmp folder under nsr
start remote exec
make sure you have savepnpc in client resource Apps & Modules Backup command field
Try just backing up the C:\ on master server first
Monitor the servers from the S1 console to make sure they suspend while this backup is running.
I am just getting into this at this writing and still testing. If anyone else thinks I missed something or has a better way please reply.