Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

backup

Status
Not open for further replies.

terry712

Technical User
Oct 1, 2002
2,175
GB
what is best way to backup orchestra 3.5
 
For me, the best way is :
a batch script to shutdown the services ePo and SQL server.
Copy the directory that cotains the database on another computer of on a DAT.
With this way, your are an offline backup of your ePo database.


@echo off

START "Stop Services ePo" /WAIT Net stop "McAfee ePolicy Orchestrator 3.0.1 Server" /Y
START "Stop Services ePo" /WAIT Net stop "McAfee ePolicy Orchestrator 3.0.1 Event Parser" /Y
START "Stop Services SQL" /WAIT Net stop "SQLSERVERAGENT" /Y
START "Stop Services SQL" /WAIT Net stop "MSSQLSERVER" /Y

SET daydate=%date%
SET curday=%daydate:~3,2%
SET curmonth=%daydate:~6,2%
SET curyear=%daydate:~9,4%

MD \\SERVER\e$\"Backup ePo Server"\"ePo301 %curyear%%curmonth%%curday%"\

START "Backup Files on Mirror" /WAIT xcopy D:\"Program Files" \\Server\e$\"Backup ePo Server"\"ePo301 %curyear%%curmonth%%curday%" /E /I /Y
 
Should exporting the sitemgr.xml and the sitelist.xml be included as from what I understand they are necessary for the restore.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top