Does anyone have a scripted/automated "orderly" shutdown of EAS?

83 views
Skip to first unread message

Dinosaur Matt

unread,
Jun 18, 2013, 4:55:22 PM6/18/13
to zantaz-eas-a...@googlegroups.com
...or any ideas how to write one?

We have a weekly maintenance window that typically gets used once per month to apply MS patches.

I would like to have an orderly shutdown. Because the team applying maintenance is applying it to HUNDREDS of servers, we cannot have them manually log in and stop tasks, etc. 

I need to script it to:
  1. stop tasks
  2. stop Storage Manager (STORM.exe) and EAS Administrator (EASViews)
  3. shutdown the parent and child servers EASSRVR service
  4. shutdown the IIS servers
  5. shutdown the DB servers
  6. when the DB server is rebooted...
  7. start the IIS servers
  8. start the parent server EASSRVR service
  9. start the EASSRVR service on the child servers
  10. the tasks should then run within their schedules.

Bagot, Janet

unread,
Jun 19, 2013, 4:27:56 AM6/19/13
to zantaz-eas-a...@googlegroups.com

If you have the EAS services stopped you don’t really need to stop tasks as they need the services to run (although you would might see errors in the log file when you re-start the services

 

See attached for some work done on creating a VB script to kill EAS processes for failover purposes which might give you some ideas (it is a zip file renamed to .txt)

 

Janet

--
You received this message because you are subscribed to the Google Groups "Autonomy/Zantaz EAS Archive Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email to zantaz-eas-archive...@googlegroups.com.
To post to this group, send email to zantaz-eas-a...@googlegroups.com.
Visit this group at http://groups.google.com/group/zantaz-eas-archive-forum.
For more options, visit https://groups.google.com/groups/opt_out.
 
 


Essential Computing is a division of SevernSoft Ltd., a company registered in England and Wales
Channel Court, Hill Road, Clevedon, BS21 7NE
Company number 1870663, VAT registration number GB 433 7332 63

The content of this email and any attachment is private and may be legally privileged. If you are not the intended recipient of this email, any use, disclosure, copying or forwarding of this email and/or its attachments is unauthorised. If you have received this communication in error please notify the sender and delete this email and any attachments immediately.
kill.txt

Jbutler

unread,
Jun 28, 2013, 3:20:41 PM6/28/13
to zantaz-eas-a...@googlegroups.com
Put this in a text file and rename it to StopEAS.bat

@echo off

net stop "EAS Service"
wait 10

kill.exe -f eassrvr.exe
wait 1

kill.exe -f easviews.exe
wait 1

net start "EAS Service"

exit
Reply all
Reply to author
Forward
0 new messages