Dear AllI have easy question but I don't know "How to Check Status TD and OD".Now, TS and OD can start complate. If I want to check status TS and OD I can check from Service of OS. But some time I'm not check by myself. So I want to know command line for checkstatus TD and OD.After I know command line.I can tell oper team for use this command.Who know please tell me. Thank You.My OS is Windows 2003 Ent.
while we're at it... any CLT that reports on the iwservlet (tomcat) status? (the other day we had iwservlet dying from out-of-memory while everything else was cool... of course the logfiles were there to let us know of the problem)
There is no CLT to get Tomcat status...Since you are on some incarnation of Unix ps -ef | grep -i servlet | grep -v grep but I'm sure you know that...
Yea and on DOS you can do similar...
my $host = `hostname`;my $command = "net start";my $results = `$command`;my @process_list=("Interwoven AccessService", "Interwoven Event Subsystem", "Interwoven OpenAPI Service", "Interwoven OpenDeploy 60 Service", "Interwoven OpenDeploy UI Admin", "Interwoven Proxy", "Interwoven Servlet Engine", "Interwoven TeamSite", "Interwoven TeamSite Search", "Interwoven Web Daemon");my $process="";my $out="";foreach $process (@process_list) { if ($results =~ m|\Q$process|) { #print "$process is running \n"; } else { print "$process is NOT running \n"; $out .= $process."\n"; } }
Probably the same as what you have done...