Im Artikel EADR with Windows 2008 R2 wurde beschrieben wie ein Windows 2008 R2 Server mit der EADR Funktion im Data Protector wiederhergestellt werden kann. Ich hatte bereits in einigen Artikeln darauf hingewiesen dass auch der Cell Server gegen einen Totalausfall geschützt werden sollte. Um auch für den Cell Server ein Disaster Recovery durchführen zu können habe ich ein kleines Skript erstellt welches den EADR Prozess vorbereitet, so dass man im Falle eines Totalsausfalls des Cell Servers schnell auf den gewünschten Stand zurücksichern kann. Unter dem untenstehenden Link kann das Skript (Batch File) heruntergeladen werden. Das Skript soll als Postexec Skript bei der IDB Sicherung aufgerufen werden (siehe unten Einstellungen zur IDB Sicherung), im angegebenen Pfad wird dann das ISO File abgelegt, inkl. der Information welche Bänder bei der Sicherung verwendet wurden. Alle Angaben in diesem Artikel beziehen sich auf einen Cell Manager unter Windows 2008 R2.
[wpdm_file id=9]
Es wird dringend empfohlen diesen Prozess mindestens 1-mal zu testen, es kann ja vorher mit den gängigen Image Tools ein Abbild erzeugt werden.
Die wesentlichen Komponenten des Batch Files sind nachfolgend erklärt.
Variablen – alle Werte müssen ausgefüllt sein:
SET OMNIHOME=D:\Program Files\Omniback
– das Basis Verzeichnis der Data Protector Installation
SET WAIKPATH=C:\Program Files\Windows AIK
– der Pfad zum installierten WAIK
SET CELLSERVER=nbdb0001
– der Name des Cell Servers (Output von omnidbutil -show_cell_name)
SET ISOPATH=%OMNIHOME%\tmp\
– der Ablageort für das erstellte ISO File
SET SRDFILE=%OMNIHOME%\Config\Server\dr\srd\%CELLSERVER%
– SRDFile – feststehende Werte
SET P1SFILE=%OMNIHOME%\Config\Server\dr\p1s\%CELLSERVER%
– P1SFile – feststehende Werte
SET P1SIMAGE=%OMNIHOME%\Config\Server\dr\p1s\%CELLSERVER%.img
– P1SImage – feststehende Werte
SET NETWORKSHARE=\\servername\share
– Ein share wo im Anschluss das erstellte ISO File wegkopiert wird
Die verwendeten Exit Codes (es können auch andere verwendet werden) veranlasst dass die Sicherung als „Failed“ markiert wird!
Checks bevor das ISO erstellt wird:
if not exist „%ISOPATH%“ (
mkdir „%ISOPATH%“
if not exist „%ISOPATH%“ (
echo Unable to create the ISOPATH – „%ISOPATH%“. Aborting …
exit 500
)
)
if not exist „%WAIKPATH%“ (
echo WAIK not found in „%WAIKPATH%“. Aborting …
exit 500
)
Und die Durchführung:
"%OMNIHOME%\bin\omniiso.exe" -session "%SESSIONID%" -cd -iso "%ISOPATH%%CELLSERVER%.iso" -srd "%SRDFILE%" -rset "%P1SFILE%" "%P1SIMAGE%" -autoinject -waik "%WAIKPATH%"
– erstellt das ISO Image unter Nutzung der Variablen
"%OMNIHOME%\bin\omnidb.exe" -session "%SESSIONID%" -media > "%ISOPATH%usedmedia.txt"
– schreibt in die Textdatei welches Band verwendet wurde
"%OMNIHOME%\bin\omnidb.exe" -session "%SESSIONID%" -media -detail >> "%ISOPATH%usedmedia.txt"
– schreibt in die Textdatei mehr Details zum verwendeten Band
Im Anschluss werden die Dateien auf den Share kopiert:
copy "%ISOPATH%%CELLSERVER%.iso" "%NETWORKSHARE%" /Y
copy "%ISOPATH%usedmedia.txt" "%NETWORKSHARE%" /Y
Allgemeines: Falls nun ein EADR des Cell Servers notwendig wird kann das erstellte ISO als CDROM gebrannt werden oder im Falle eine HP Servers als Virtual Media im ILO gemountet werden. Der EADR Prozess erfolgt ähnlich des bereits beschriebenen Windows 2008 R2 EADR Prozesses. Es ist jedoch darauf zu achten dass das Band Laufwerk dem Server direkt zugeordnet werden kann und sich das benötigte Band bereits im Laufwerk befindet, da zum Zeitpunkt des DR Prozesses die Robotic nicht angesprochen wird. In der DRMSHELL wird dann abgefragt welches Laufwerk für den Offline Restore verwendet werden soll. Ferner ist darauf zu achten dass das Band was für die Sicherung verwendet wurde mit 64K Blocksize formatiert wurde. Es hat sich bewährt ein eigenes Laufwerk mit 64K Blocksize zu erstellen und einen eigenen Pool mit dedizierten Bändern nur für die IDB Sicherung zu verwenden. Den anderen Backupjobs weist man dann die „normalen“ Laufwerke mit einer größeren Blocksize zu, sofern möglich.
Bedingungen: Die Anleitung ist zum Data Protector Patch Stand Januar 2011 und gilt nur für die zu diesem Zeitpunkt eingesetzten Produkte und Versionsstände (Patch Stand Dezember 2010 zuzüglich SSP). Im Übrigen wird auf die Bedingungen verwiesen, die im oben erwähnten Artikel enthalten sind.
Die Einstellungen der IDB Sicherung:
- In der Sicherung müssen alle Mountpoints ausgewählt werden (sollte auf dem Server eine Filelibrary angelegt sein, so können die Filelibrary Verzeichnisse abgewählt werden).
- Die CONFIGURATION Sicherung muss vollständig erfolgen.
- Die Sicherung der internen Datenbank muss aktiviert sein.
- Die Sicherung des Laufwerk C: erfolgt vollständig, es wird nur das pagefile.sys und c:\windows\system32\config exkludiert.
- Bei der Sicherung des D: Laufwerks (oder auf dem Laufwerk wo Data Protector installiert ist) wird das db40 Verzeichnis exkludiert.
- In den Backup options wird unter Post-exec der Aufruf zum makeiso.cmd eingetragen (z.B.: „d:\program files\omniback\bin\makeiso.cmd“)
- In den Filesystem options wird unter Other der Haken bei „Copy Full DR Image to disk“ gesetzt, alle anderen Optionen bleiben deaktiviert („Display statistical info“ kann aktiviert bleiben.
- In den Filesystem options werden unter WinFS options folgende Optionen ativiert, der Rest bleibt deaktiviert: „Detect NTFS hardlinks“, „Backup share information for directories“, „Use Shadow Copy“
- Wichtig: die Sicherung muss auf ein band mit 64K Block Size erfolgen.
- Optional kan die Schutzfrist der IDB von permanent auf einen beliebigen Wert gesetzt werden.
Relevanter Teil aus dem Post-exec Skript in den Session messages:
[Normal] From: BSM@nbdb0001 "DP_TEST" Time: 17.03.2011 12:45:17
Starting to execute ""D:\Program Files\OmniBack\bin\makeiso.cmd""...
Script Parameter:
Script Environment: host='LIBDBR' user='NBDB0001\danielbraun'
script='D:\Program Files\OmniBack\bin\makeiso.cmd'
path='D:\Program Files\OmniBack\bin\'
Prepared SRDFILE found, skipping generation
[Normal] From: omniiso@nbdb0001 "omniiso" Time: 17.03.2011 12:45:20
Creating the Disaster Recovery ISO image file. This may take a few minutes...
[Normal] From: omniiso@nbdb0001 "omniiso" Time: 17.03.2011 12:45:22
Initializing MiniOS directory structure.
[Normal] From: omniiso@nbdb0001 "omniiso" Time: 17.03.2011 12:45:24
Mounting MiniOS image.
[Normal] From: omniiso@nbdb0001 "omniiso" Time: 17.03.2011 12:45:33
Inserting Recovery Info file into the MiniOS image file.
[Normal] From: omniiso@nbdb0001 "omniiso" Time: 17.03.2011 12:45:33
Inserting Hardware Info file into the MiniOS image file.
[Normal] From: omniiso@nbdb0001 "omniiso" Time: 17.03.2011 12:45:33
Inserting Network Info file into the MiniOS image file.
[Normal] From: omniiso@nbdb0001 "omniiso" Time: 17.03.2011 12:45:33
Inserting ASR BCD file into the MiniOS image file.
[Normal] From: omniiso@nbdb0001 "omniiso" Time: 17.03.2011 12:45:33
Copying MiniOS system files to the image file.
[Normal] From: omniiso@nbdb0001 "omniiso" Time: 17.03.2011 12:45:36
Copying DRM binaries to the image file.
[Normal] From: omniiso@nbdb0001 "omniiso" Time: 17.03.2011 12:45:36
Copying DRM configuration directory to the image file.
[Normal] From: omniiso@nbdb0001 "omniiso" Time: 17.03.2011 12:45:36
Copying backup application depot directory to the image file.
[Normal] From: omniiso@nbdb0001 "omniiso" Time: 17.03.2011 12:45:36
Configuring vendor specific system images.
[Normal] From: omniiso@nbdb0001 "omniiso" Time: 17.03.2011 12:45:36
Creating the MiniOS image startup file.
[Normal] From: omniiso@nbdb0001 "omniiso" Time: 17.03.2011 12:45:36
Installing additional MiniOS packages.
[Normal] From: omniiso@nbdb0001 "omniiso" Time: 17.03.2011 12:46:04
Installing additional MiniOS packages.
[Normal] From: omniiso@nbdb0001 "omniiso" Time: 17.03.2011 12:46:11
Cleaning up MiniOS image, preparing it for usage.
[Normal] From: omniiso@nbdb0001 "omniiso" Time: 17.03.2011 12:46:11
Injecting driver files into the MiniOS image.
[Normal] From: omniiso@nbdb0001 "omniiso" Time: 17.03.2011 12:46:27
Initializing MiniOS scratch space.
[Normal] From: omniiso@nbdb0001 "omniiso" Time: 17.03.2011 12:46:29
Dismounting/Committing MiniOS image.
[Normal] From: omniiso@nbdb0001 "omniiso" Time: 17.03.2011 12:46:42
Writing CD-ROM ISO image to the target location.
[Normal] From: omniiso@nbdb0001 "omniiso" Time: 17.03.2011 12:46:43
Successfully created the Disaster Recovery ISO image.
Finished
[Normal] From: BSM@nbdb0001 "DP_TEST" Time: 17.03.2011 12:46:44
The exec script ""D:\Program Files\OmniBack\bin\makeiso.cmd"" has completed.
Hey Daniel!
First thank you for the interesting posts.
Secondly, a question about the makeiso.cmd script.
I get this error:
Prepared SRDFILE found, skipping generation
Error updating SRD file objects [error: -13]. Aborting.
And I can\\\’t seem to find on google what error -13 equates to…
Hi Jakob,
in this case you can modify the script like this:
if not exist "%SRDFILE%" goto SRDNO
if exist "%SRDFILE%" goto SRDYES
:SRDNO
echo Prepared SRDFILE not found, will be generated ...
"%OMNIHOME%\bin\omniiso.exe" -session "%SESSIONID%" -cd -iso "%ISOPATH%%CELLSERVER%.iso" -autoinject -waik "%WAIKPATH%
goto END
:SRDYES
echo Prepared SRDFILE found, skipping generation
"%OMNIHOME%\bin\omniiso.exe" -session "%SESSIONID%" -cd -iso "%ISOPATH%%CELLSERVER%.iso" -srd "%SRDFILE%" -rset "%P1SFILE%" "%P1SIMAGE%" -autoinject -waik "%WAIKPATH%"
goto END
to
echo SRDFILE will be generated …
„%OMNIHOME%\bin\omniiso.exe“ -session „%SESSIONID%“ -cd -iso „%ISOPATH%%CELLSERVER%.iso“ -autoinject -waik „%WAIKPATH%
goto END
That seems to have done the trick, thanks Daniel!
Regards,
Jakob
Hi Daniel,
I did this fine but I dont understand how can I make recovery for cellserver from file (or tape).
When I try to recovering server from file I get message „No supported local devices were found“. So how can I make disk with files to be visible for recovery ?
Thank you
Kamil
Pingback: EADR for Cell Server - DP 8.1X on Windows 2012 R2
Hi,
When I try and run I get error -9, any ideas?
E:\\\\>cd CellServerISOs
E:\\\\CellServerISOs>dir
Volume in drive E is IDB Database
Volume Serial Number is A436-A2D4
Directory of E:\\\\CellServerISOs
18/08/2014 14:40 .
18/08/2014 14:40 ..
18/08/2014 14:33 3,332 makeiso.cmd
18/08/2014 14:41 2,650 makeisoV2.cmd
2 File(s) 5,982 bytes
2 Dir(s) 187,809,923,072 bytes free
E:\\\\CellServerISOs>makeisoV2.cmd
Script Parameter:
Script Environment: host=\\\’EUWMDC01DPCM02\\\‘ user=\\\’EU\\\\dsupp.jah\\\‘
script=\\\’E:\\\\CellServerISOs\\\\makeisoV2.cmd\\\‘
path=\\\’E:\\\\CellServerISOs\\\\\\\‘
SRDFILE will be generated à
The filename, directory name, or volume label syntax is incorrect.
The system cannot find the batch label specified – END
E:\\\\CellServerISOs>d:
D:\\\\>cd \\\“Program Files\\\“
D:\\\\Program Files>cd OmniBack
D:\\\\Program Files\\\\OmniBack>cd bin
D:\\\\Program Files\\\\OmniBack\\\\bin>ls
\\\’ls\\\‘ is not recognized as an internal or external command,
operable program or batch file.
D:\\\\Program Files\\\\OmniBack\\\\bin>dir
Volume in drive D is Data
Volume Serial Number is AA9F-77B0
Directory of D:\\\\Program Files\\\\OmniBack\\\\bin
30/06/2014 16:32 .
30/06/2014 16:32 ..
29/04/2014 16:26 509,384 40comupd.exe
29/04/2014 16:21 2,483,928 Admin.dll
23/06/2014 16:32 2,019,544 asm.exe
29/04/2014 16:21 4,383,960 Backup.dll
23/06/2014 16:41 951,000 bm.exe
29/04/2014 16:08 5,813,464 bma.exe
24/06/2014 01:05 52,224 boost_date_time-vc90-mt-1_44.dll
24/06/2014 01:05 163,328 boost_filesystem-vc90-mt-1_44.dll
24/06/2014 01:05 68,608 boost_iostreams-vc90-mt-1_44.dll
24/06/2014 01:05 382,976 boost_program_options-vc90-mt-1_44.dll
24/06/2014 01:05 908,800 boost_regex-vc90-mt-1_44.dll
24/06/2014 01:05 297,472 boost_serialization-vc90-mt-1_44.dll
24/06/2014 01:05 68,096 boost_signals-vc90-mt-1_44.dll
24/06/2014 01:05 16,896 boost_system-vc90-mt-1_44.dll
24/06/2014 01:05 58,368 boost_thread-vc90-mt-1_44.dll
24/06/2014 01:05 78,848 boost_zlib-vc90-mt-1_44.dll
23/06/2014 16:32 2,987,224 bsm.exe
29/04/2014 16:25 698,072 change_journal.dll
29/04/2014 16:25 541,912 cjutil.exe
29/04/2014 16:21 1,430,232 Clients.dll
23/06/2014 16:32 112,856 Clustering.dll
29/04/2014 16:08 6,016,216 cma.exe
30/06/2014 16:32 components
29/04/2014 16:21 1,686,744 Copy.dll
06/01/2014 16:39 3,934 copy_iso_to_ftp.pl.tmpl
29/04/2014 16:21 7,995,608 Core.dll
06/01/2014 16:42 14,389 create_db_clus.pl
23/06/2014 16:33 1,581,784 crs.exe
23/06/2014 16:33 2,952,920 csm.exe
06/01/2014 16:55 1,281 D2DRestartBackup.cmd
06/01/2014 16:55 33,852 D2DRestartBackup.pl
06/01/2014 16:55 808 D2DRestartBackupBg.cmd
29/04/2014 16:22 1,241,304 DataBase.dll
29/04/2014 16:25 612,568 dbpop.exe
30/06/2014 16:31 dbscripts
23/06/2014 16:33 3,195,608 dbsm.exe
29/04/2014 16:06 6,945,592 DeduplicationAPI.dll
29/04/2014 16:08 1,363,160 devbra.exe
23/06/2014 16:29 1,720,024 dma.exe
23/06/2014 14:28 161,826 dp-scgui.ear
23/06/2014 14:29 2,869,722 DPOptionsEditor.war
29/04/2014 16:11 808,152 dra.exe
30/06/2014 15:49 drim
23/06/2014 16:25 259,288 drstart.exe
23/06/2014 16:33 7,342,808 facade.dll
29/04/2014 16:31 138,456 formatter.dll
29/04/2014 16:25 896,216 fsbrda.exe
06/01/2014 16:49 1,008 fse_server_prepare.bat
24/06/2014 01:04 14,930,944 icudt44.dll
24/06/2014 01:04 1,489,408 icuuc44.dll
30/06/2014 16:22 imageformats
23/06/2014 16:33 517,848 inimerger.exe
29/04/2014 16:22 1,474,264 instrest.dll
23/06/2014 16:34 762,584 keystore.dll
23/06/2014 16:34 1,017,048 kms.exe
23/06/2014 16:39 384,216 libae.dll
23/06/2014 16:27 291,032 libae32.dll
29/04/2014 22:53 124,928 libDataDomainoncrpc.dll
29/04/2014 22:53 74,752 libDataDomainpthread.dll
23/06/2014 16:40 30,424 libdc.dll
23/06/2014 16:27 29,400 libdc32.dll
29/04/2014 22:53 1,535,488 libDDBoost.dll
23/06/2014 16:40 514,776 libde.dll
23/06/2014 16:27 429,784 libde32.dll
24/06/2014 01:04 1,293,312 libeay32.dll
29/04/2014 16:26 99,544 libeidb.dll
24/06/2014 01:04 174,080 libexpat.dll
29/04/2014 16:09 1,373,400 libobjstoreclient.dll
23/06/2014 16:29 214,328 libpq.dll
29/04/2014 22:53 604,160 libsqlite.dll
29/04/2014 16:22 548,056 Manager.exe
13/08/2012 16:31 523 Microsoft.VC80.CRT.manifest
29/04/2014 16:09 5,951,704 mma.exe
23/06/2014 16:34 1,399,000 mmd.exe
29/04/2014 16:22 929,496 Monitor.dll
03/09/2012 11:07 463 mount.bat
06/01/2014 16:47 463 mount.bat.tmpl
23/06/2014 16:27 1,447,128 mrgcfg.exe
23/06/2014 16:34 2,057,432 msm.exe
23/06/2014 16:41 354,616 msvcr71.dll
24/06/2014 01:04 796,672 msvcr80.dll
23/06/2014 16:44 370,392 msvcrt.dll
29/04/2014 16:10 796,376 omniabort.exe
23/06/2014 16:25 813,272 omniamo.exe
23/06/2014 14:19 56,355 omniasutil.pl
29/04/2014 16:11 1,181,400 omnib.exe
29/04/2014 16:11 1,374,424 omnib2dinfo.exe
06/01/2014 17:01 1,455 omnibidol.bat
29/04/2014 16:12 28,888 omnicab.exe
23/06/2014 16:26 1,302,232 omnicc.exe
29/04/2014 16:11 1,184,984 omnicellinfo.exe
23/06/2014 16:26 909,016 omnicheck.exe
23/06/2014 16:22 1,619,160 OmniChs.dll
23/06/2014 16:26 828,120 omnicjutil.exe
23/06/2014 16:27 813,784 omniclus.exe
29/04/2014 16:12 1,130,712 omnicreatedl.exe
29/04/2014 16:12 1,145,560 omnidb.exe
23/06/2014 16:34 1,862,872 omnidbcheck.exe
23/06/2014 16:34 1,420,504 omnidbinit.exe
29/04/2014 16:17 1,381,592 omnidbp4000.exe
06/01/2014 16:50 2,335 omnidbrestore.pl
29/04/2014 16:18 1,487,064 omnidbsmis.exe
23/06/2014 16:35 1,878,744 omnidbutil.exe
29/04/2014 16:13 951,000 omnidbvss.exe
29/04/2014 16:21 994,008 omnidbxp.exe
29/04/2014 16:13 1,473,752 omnidbzdb.exe
23/06/2014 16:35 918,232 omnidlc.exe
23/06/2014 16:37 804,056 omnidls.exe
29/04/2014 16:13 832,216 omnidownload.exe
23/06/2014 16:22 4,037,848 OmniEnu.dll
23/06/2014 16:22 2,524,376 OmniFra.dll
23/06/2014 14:19 119,310 omnigencert.pl
23/06/2014 16:36 511,704 omnigetmsg.exe
23/06/2014 16:28 601,304 omnihealthcheck.exe
23/06/2014 16:35 519,896 omniiconv.exe
06/01/2014 17:01 2,794 omniidol.bat
06/01/2014 17:01 25,517 omniidol.pl
06/01/2014 17:01 1,491 omniindex.bat
23/06/2014 16:37 987,352 OmniInet.exe
23/06/2014 16:37 534,744 omniinetpasswd.exe
29/04/2014 14:32 16,429 omniintconfig.pl
29/04/2014 16:13 1,329,880 omniiso.exe
23/06/2014 16:22 2,262,232 OmniJpn.dll
23/06/2014 16:28 1,223,896 omnikeymigrate.exe
23/06/2014 16:28 863,960 omnikeytool.exe
06/01/2014 16:43 1,582 omnilogo.ico
29/04/2014 16:14 857,816 omnimcopy.exe
23/06/2014 14:19 152,957 omnimigrate.pl
29/04/2014 16:14 857,816 omniminit.exe
29/04/2014 16:14 807,640 omnimlist.exe
29/04/2014 16:14 1,324,248 omnimm.exe
29/04/2014 16:15 795,352 omnimnt.exe
29/04/2014 16:15 851,672 omnimver.exe
23/06/2014 16:29 630,488 omninotifupg.exe
29/04/2014 16:15 1,121,496 omniobjconsolidate.exe
29/04/2014 16:15 1,144,024 omniobjcopy.exe
29/04/2014 16:15 1,114,328 omniobjverify.exe
23/06/2014 16:30 998,104 omniofflr.exe
29/04/2014 16:16 1,235,672 omnir.exe
29/04/2014 16:16 1,681,624 omnirpt.exe
23/06/2014 16:38 706,776 omnirsh.exe
29/04/2014 14:32 21,366 omnisnapmgr.pl
23/06/2014 16:35 515,800 omnisnmp.exe
23/06/2014 16:31 1,266,392 omnisrdupdate.exe
29/04/2014 16:16 820,952 omnistat.exe
23/06/2014 16:35 1,011,928 omnistoreapputil.exe
23/06/2014 16:35 66,264 omnistoreapputil_vtl.dll
23/06/2014 16:36 1,049,816 omnisv.exe
23/06/2014 16:36 1,462,488 omnitrig.exe
29/04/2014 16:16 889,048 omniupload.exe
29/04/2014 16:17 1,032,408 omniusb.exe
24/06/2014 01:04 347,136 openssl.exe
24/06/2014 01:07 749,568 oraocci11.dll
13/08/2012 21:45 618 oraocci11.dll.manifest
23/06/2014 16:40 1,133,784 OvLicCapi.dll
04/12/2013 12:15 27,000 perl.exe
23/06/2014 16:24 792,952 perl58.dll
24/06/2014 01:04 419,328 PocoData.dll
24/06/2014 01:04 812,544 PocoDataSQLite.dll
24/06/2014 01:04 1,640,448 PocoFoundation.dll
24/06/2014 01:04 938,496 PocoNet.dll
24/06/2014 01:04 250,880 PocoRemoting.dll
24/06/2014 01:04 133,632 PocoRemotingBinary.dll
24/06/2014 01:04 450,048 PocoUtil.dll
24/06/2014 01:04 712,192 PocoXML.dll
23/06/2014 16:28 2,755,800 postgres_bar.exe
29/04/2014 16:24 3,204,312 QtCore4.dll
29/04/2014 16:24 10,669,784 QtGui4.dll
29/04/2014 16:24 1,341,656 QtNetwork4.dll
29/04/2014 16:25 17,492,696 QtWebKit4.dll
29/04/2014 16:26 1,409,240 rbda.exe
29/04/2014 16:22 2,144,984 Report.dll
29/04/2014 16:22 4,154,072 Restore.dll
29/04/2014 16:09 6,392,024 rma.exe
29/04/2014 16:27 1,250,192 rrda.exe
23/06/2014 16:36 2,819,800 rsm.exe
29/04/2014 16:09 1,666,264 sanconf.exe
23/06/2014 16:40 894,680 sap_bl_util.exe
29/04/2014 16:32 243,928 serializer.dll
23/06/2014 14:19 11,744 SharePoint_VSS_createbarlists.pl
23/06/2014 16:25 2,117,336 srdx.dll
24/06/2014 01:04 943,104 ssleay32.dll
29/04/2014 16:28 1,351,384 storeonceinfo.exe
29/04/2014 16:06 11,679,544 StoreOnceSoftware.exe
04/03/2013 00:52 1,416 StoreOnceSoftware_install.bat
04/03/2013 00:52 494 StoreOnceSoftware_uninstall.bat
29/04/2014 16:12 530,136 sysnfoasr.dll
29/04/2014 16:13 567,512 sysnfop1s.dll
23/06/2014 16:26 692,952 sysnfowxp.dll
29/04/2014 16:09 6,628,568 uma.exe
23/06/2014 16:33 1,487,576 upgrade_cm_from_evaa.exe
29/04/2014 16:23 1,037,528 Users.dll
30/06/2014 16:31 utilns
23/06/2014 16:40 1,342,168 util_cmd.exe
29/04/2014 16:27 1,652,440 vbda.exe
29/04/2014 16:27 1,488,600 vrda.exe
191 File(s) 274,645,588 bytes
7 Dir(s) 143,671,689,216 bytes free
D:\\\\Program Files\\\\OmniBack\\\\bin>omniiso
Generating Automatic Disaster Recovery information. This may take a few minutes.
Analyzing system storage.
Analyzing system hardware.
Analyzing network configuration.
Initiating the creation of the Recovery Set archive.
Storing ASR/BCD configuration data into the Recovery Set archive.
Storing system license data into the Recovery Set archive.
Storing network support files into the Recovery Set archive.
Storing additional VSS writer data into the Recovery Set archive.
Storing driver installations into the Recovery Set archive.
Verifying/Storing system partitions.
Storing Recovery Info data into the Recovery Set archive.
Storing hardware info into the Recovery Set archive.
Storing network info into the Recovery Set archive.
Storing phase 0 log file into the Recovery Set archive.
Starting the verification of the Recovery Set archive.
Creating the Disaster Recovery ISO image file. This may take a few minutes…
Cannot create the Disaster Recovery ISO image file.
D:\\\\Program Files\\\\OmniBack\\\\bin>e:
E:\\\\CellServerISOs>makeiso.cmd
Script Parameter:
Script Environment: host=\\\’EUWMDC01DPCM02\\\‘ user=\\\’EU\\\\dsupp.jah\\\‘
script=\\\’E:\\\\CellServerISOs\\\\makeiso.cmd\\\‘
path=\\\’E:\\\\CellServerISOs\\\\\\\‘
Prepared SRDFILE not found, will be generated …
Error updating SRD file objects [error: -9]. Aborting.
Finished
E:\\\\CellServerISOs>omnisrdupdate
Cannot obtain session ID from the environment. Aborting.
E:\\\\CellServerISOs>
Hi Julian,
do you use the batch files for Pre-DP8 versions or the new makeiso for DP 8/9?
Best regards
Daniel
Hi,
I am running Data Protector 8.12 on Windows 2008 R2.
Regards
Julian
Hi Julian,
it seems you are using the wrong batch files… Please refer to this article: https://www.data-protector.org/wordpress/2014/04/eadr-cell-server-dp-8-1x-windows-2012-r2/.
This article might be useful too (if you are located in Germany): https://www.data-protector.org/wordpress/2014/08/hp-data-protector-online-seminar-eadr-cell-server/
Best regards
Daniel