In article EADR with Windows 2008 R2 I described how to use Data Protector EADR for a Windows 2008 R2 server. I also described in former articles that you should be prepared when your Cell Server crashs. To be able to do EADR for your Cell Server I wrote a small script, which allows you to create the needed ISO file, which can be used to recover your Cell Server to the latest state. The Batch file can be downloaded below. The script will be implemented as Post-exec script in the backup of the IDB (for settings see below), in the configured path the ISO will be generated, including the information for the used media during the backup. All stuff within this article is valid for a Cell Manager on Windows 2008 R2.
[wpdm_file id=9]
It is recommended to test that solution at least once. You may use a imaging tool to create a image from your server.
The main components of the batch are described below.
Variables – all values must be provided:
SET OMNIHOME=D:\Program Files\Omniback
– Data Protector home folder
SET WAIKPATH=C:\Program Files\Windows AIK
– path to WAIK
SET CELLSERVER=nbdb0001
– name of the Cell Server (use output from omnidbutil -show_cell_name)
SET ISOPATH=%OMNIHOME%\tmp\
– the folder for the ISO to be created
SET SRDFILE=%OMNIHOME%\Config\Server\dr\srd\%CELLSERVER%
– SRDFile – fix values
SET P1SFILE=%OMNIHOME%\Config\Server\dr\p1s\%CELLSERVER%
– P1SFile – fix values
SET P1SIMAGE=%OMNIHOME%\Config\Server\dr\p1s\%CELLSERVER%.img
– P1SImage – fix values
SET NETWORKSHARE=\\servername\share
– a network share to copy the ISO off the server
The used exit codes (you can also use other exit codes) will mark the session as “failed” in case of errors.
Do some check before the ISO is created:
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
)
The creation of the ISO file:
"%OMNIHOME%\bin\omniiso.exe" -session "%SESSIONID%" -cd -iso "%ISOPATH%%CELLSERVER%.iso" -srd "%SRDFILE%" -rset "%P1SFILE%" "%P1SIMAGE%" -autoinject -waik "%WAIKPATH%"
– creates the ISO using the given variables
"%OMNIHOME%\bin\omnidb.exe" -session "%SESSIONID%" -media > "%ISOPATH%usedmedia.txt"
– writes the used media to a text file
"%OMNIHOME%\bin\omnidb.exe" -session "%SESSIONID%" -media -detail >> "%ISOPATH%usedmedia.txt"
– adds some more details for the used media
At the end the files are copied to the specified share:
copy "%ISOPATH%%CELLSERVER%.iso" "%NETWORKSHARE%" /Y
copy "%ISOPATH%usedmedia.txt" "%NETWORKSHARE%" /Y
General information: If you now need EADR for your Cell Server, burn the created ISO image to CDROM or in case you have a HP Server, mount the ISO as virtual media within ILO. The EADR process is very similiar to the already described Windows 2008 R2 EADR process. You have to keep in mind that the drive must be maped directly to the server and the media for the restore must be already mounted, as during the DR process the robotic is not used. In the DRMSHELL you will be prompted to select a drive for the offline restore. Please keep also in mind that you used a media with 64k block size for the backup. It is common to create a separate drive with 64k block size and to use a dedicated pool with dedicated media for the backup of the IDB. Other backup jobs might use other drives with higher block size, if available.
Requirements: The article was created with Data Protector patches installed in January 2011 and valid for the mentioned products and versions only (patches from December and additional SSP applied). For further requirements, please refer to the article mentioned above.
Settings for the IDB backup:
- Within the backup specificationall mount points must be selected (in case there is a file library n the cell server, unselect the folders for the file library for the involved montpoints).
- The backup of CONFIGURATION must be done without any excludes.
- The backup of the internal database must be enabled
- The backup for mount oint C: will be done with only these excludes defined: pagefile.sys and c:\windows\system32\config.
- For the munt point where Data Protector is installed exclude the db40 folder.
- In Backup options, in Post-exec edit the call to the batch makeiso.cmd (i.e. “d:\program files\omniback\bin\makeiso.cmd”)
- In Filesystem options in tab Other select “Copy Full DR Image to disk”, all other options stay unselected (“Display statistical info” of course can be selected).
- In Filesystem options in tab WINFS unselect all, except: “Detect NTFS hardlinks”, “Backup share information for directories”, “Use Shadow Copy”
- Important: the backup must be done to a media formatted with 64k blocksize.
- Optional: select a data protection for the IDB other than permanent.
Important part from Post-exec script in 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