Link to home
Create AccountLog in
Avatar of jayatallen
jayatallen

asked on

how to find when rc script started tomcat

Hi Folks,

I need to find when rc script started the tomcat. Currently my prod solaris 10 server is scheduled to reboot weekly.Every Sat. at 8:00 AM. And when its comes up after it reboot,we have script setup in /etc/rc2.d to start the tomcat.
It has been working fine.But yesterday, tomcat didnt come up after reboot and later it came up automatically after 4 hours.
So far what i have done:
checked the server was actually rebooted at sheduled time and found it did reboot at sheduled time.
bash-3.00$ last reboot | head
reboot    system boot                   Sat Mar 26 08:05
reboot    system down                   Sat Mar 26 08:00
reboot    system boot                   Sat Mar 19 08:05
reboot    system down                   Sat Mar 19 08:00
reboot    system boot                   Sat Mar 12 08:05
reboot    system down                   Sat Mar 12 08:00
reboot    system boot                   Sat Mar  5 08:05
reboot    system down                   Sat Mar  5 08:00
reboot    system boot                   Sat Feb 26 08:05
reboot    system down                   Sat Feb 26 08:00

Then i checked catalina out file to see when generally it starts after reboot:
grep -i 'server startup' catalina.out | tail
catalina.out:2010-12-04 08:14:26,176 (Catalina.java:560) INFO  org.apache.catalina.startup.Catalina - Server startup in 28081 ms
catalina.out:2010-12-11 08:14:29,202 (Catalina.java:560) INFO  org.apache.catalina.startup.Catalina - Server startup in 27811 ms
catalina.out:2010-12-18 08:14:24,104 (Catalina.java:560) INFO  org.apache.catalina.startup.Catalina - Server startup in 27815 ms
catalina.out:2010-12-25 08:14:24,515 (Catalina.java:560) INFO  org.apache.catalina.startup.Catalina - Server startup in 28176 ms
catalina.out:2011-01-01 08:14:26,042 (Catalina.java:560) INFO  org.apache.catalina.startup.Catalina - Server startup in 27550 ms
catalina.out:2011-01-08 08:14:24,199 (Catalina.java:560) INFO  org.apache.catalina.startup.Catalina - Server startup in 28371 ms
catalina.out:2011-01-15 08:14:41,326 (Catalina.java:560) INFO  org.apache.catalina.startup.Catalina - Server startup in 27678 ms
catalina.out:2011-01-22 08:14:29,239 (Catalina.java:560) INFO  org.apache.catalina.startup.Catalina - Server startup in 27737 ms
catalina.out:2011-01-29 08:14:24,634 (Catalina.java:560) INFO  org.apache.catalina.startup.Catalina - Server startup in 28082 ms
catalina.out:2011-02-04 18:37:32,357 (Catalina.java:560) INFO  org.apache.catalina.startup.Catalina - Server startup in 48217 ms
catalina.out:2011-02-05 08:14:26,014 (Catalina.java:560) INFO  org.apache.catalina.startup.Catalina - Server startup in 27494 ms
catalina.out:2011-02-12 08:14:25,305 (Catalina.java:560) INFO  org.apache.catalina.startup.Catalina - Server startup in 27705 ms
catalina.out:2011-02-19 08:13:27,119 (Catalina.java:560) INFO  org.apache.catalina.startup.Catalina - Server startup in 27818 ms
catalina.out:2011-02-26 08:13:28,873 (Catalina.java:560) INFO  org.apache.catalina.startup.Catalina - Server startup in 27744 ms
catalina.out:2011-03-05 08:13:28,152 (Catalina.java:560) INFO  org.apache.catalina.startup.Catalina - Server startup in 27877 ms
catalina.out:2011-03-12 08:13:30,109 (Catalina.java:560) INFO  org.apache.catalina.startup.Catalina - Server startup in 27478 ms
catalina.out:2011-03-19 08:13:28,806 (Catalina.java:560) INFO  org.apache.catalina.startup.Catalina - Server startup in 27606 ms
catalina.out:2011-03-26 12:30:47,702 (Catalina.java:560) INFO  org.apache.catalina.startup.Catalina - Server startup in 27632 ms

So, i can see it was started at catalina.out:2011-03-26 12:30:47.

Lastly i checked rc.2d folder and if has below script which is responsible for stop/start of tomcat.
-rwxr--r--   1 root     other       1064 Aug  6  2010 K99stopLAIOPRODEnv
bash-3.00$ pwd
/etc/rc2.d
bash-3.00$


1)How can i find if the solaris10 tried to start the tomcat after rebooting?
2)when it didnt up after reboot, how come tomcat started after 4 hours automatically? --Is rc script tries to restart the application after a failure? i mean it rc script and it didnt bring up the application,would i try to bring it up again itself?

The main thing i need to bebug why it didnt when machine came up?
and why it started at  12:30:47 itself?

Please help/suugest or guide me  to any resource . i'm familiar with basics of  unix.

Thank you
Joe
SOLUTION
Avatar of jgiordano
jgiordano
Flag of United States of America image

Link to home
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
See answer
Avatar of jayatallen
jayatallen

ASKER

Thank you for your reply.
Is it possible to use one rc script to stop and start.
Because  when i grepped for my application,compass using i see only one file.
Or is it possible to have another rc script in higher level for starting the tomcat?
bash-3.00$ pwd
/etc/rc2.d
bash-3.00$ grep -i compass  *


bash-3.00$ more K99stopLionnPRODEnv
#!/bin/sh

case "$1" in
'start')

         su - compass -c "/apps/compass/startStopJanus.sh start"

         sleep 180

         /apps/compass/startStopLionnApachePROD.sh start

         su - compass -c "/apps/compass/startStopLionnCompassPROD.sh start"

         su - compass -c "/apps/compass/startStopLionnNotifPROD.sh start"

         su - compass -c "/apps/compass/startStopLionnPLCTPROD.sh start"

        su - compass -c "/apps/compass/startStopLionnSPOSSPROD.sh start"

        ;;
'stop')



         su - compass -c "/apps/compass/startStopLionnCompassPROD.sh stop"

         su - compass -c "/apps/compass/startStopLionnNotifPROD.sh stop"

         su - compass -c "/apps/compass/startStopLionnPLCTPROD.sh stop"

         su - compass -c "/apps/compass/startStopLionnSPOSSPROD.sh stop"

         /apps/compass/startStopLionnApachePROD.sh stop

         su - compass -c "/apps/compass/startStopJanus.sh stop"



       ;;
*)
        echo "Usage: $0 { start | stop }"
        exit

i see it now. A similar script in /etc/rc3.d
Is it responsible to startup ?

bash-3.00$ pwd
/etc/rc3.d
bash-3.00$ ls -l S99startLionnPRODEnv
-rwxr--r--   1 root     root        1064 Feb 19  2009 S99startLionnPRODEnv
bash-3.00$


bash-3.00$ diff S99startLionnPRODEnv /etc/rc2.d/K99stopLionnPRODEnv
bash-3.00$ pwd
/etc/rc3.d

So for now, can i say that there must be some issues with startup rc script?
How can i debug/find the issue?
Please suggest.
Avatar of Joseph Gan
You can run "strace" command to debug the issue by
# stace -o /tmp/output.txt /etc/rc3.d/S99startLionnPRODEnv start
# view /tmp/output.txt
Thank you ganjos.
I ran it but says ERROR. do only root can run the given command?

bash-3.00$ strace  -o /tmp/output.txt /etc/rc3.d/S99startLionnrPRODEnv
ERROR: unable to open /dev/log

bash-3.00$ ls -l log
lrwxrwxrwx   1 root     other         27 Feb 17  2009 log -> ../devices/pseudo/log@0:log
bash-3.00$ more log
log: Permission denied
bash-3.00$ ls -l  ../devices/pseudo/log@0:log
crw-r-----   1 root     sys       21,  5 Feb 17  2009 ../devices/pseudo/log@0:log
bash-3.00$ pwd
/dev
Is there any other way to debug?
Does rc script try to run an application after successive failure until it succeeded?
Usually owner of the script can run debug, but because some script access other paths which may need root permision, in this case better to run as root.

The rc script will run when system starts or run by root, won't be wait until it succeeded. It looks to me Tomcat is depanded on other processes such as Appach and Java. The depandant will cause Tomcat fail to start as well.
Hi ganjos,

actually we are using maven to start all the required components together.Basically only one rc script starts apache,siteminder and tomcat.Apache and siteminder agent came up.
For simplicity,if i consider it failed for some reason...
Is there way how tomcat got started itself later?

Please help
Check your start scripts:
su - compass -c "/apps/compass/startStopJanus.sh start"
         /apps/compass/startStopLionnApachePROD.sh start
         su - compass -c "/apps/compass/startStopLionnCompassPROD.sh start"
         su - compass -c "/apps/compass/startStopLionnNotifPROD.sh start"
         su - compass -c "/apps/compass/startStopLionnPLCTPROD.sh start"
         su - compass -c "/apps/compass/startStopLionnSPOSSPROD.sh start"

One of them must be Tomcat. If not, that means Tomcat start manually later.
Hi ganjos,
i know /apps/compass/startStopLionnCompassPROD.sh start commands starts one apache and one application as i have done deployments in lower env.
And the major issue is its Prod env. so i cant start them again.
I was asked to get the evidence why the script failed ? and how it came up after 4 hours?

is there any way to find something in log files?
Do the sub scripts write out to logs? you will have to check each script and see how/where the log is written.
SOLUTION
Link to home
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
Solaris 10 uses the svcadm mechanism to manage startup process with the exception of some legacy where the /etc/rc*.d scripts come into place.
It seems that your tomcat/startup process sets the delay before start based on the log.
It seems that someone thought the dealy will be in milliseconds versus seconds.

Solaris uses the truss command that is comparable to the strace.
Your issue is that a delay is included in the start of tomcat after reboot.  Often if a delay is needed, one should set the startup value higher.

look in /etc/init.d to see whether tomcat script is there and then see whether you see a reference to 28800.
SOLUTION
Link to home
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
Hi Ganjos...

syslog.conf looks very cryptic to me :(
bash-3.00$ grep -v \# syslog.conf
*.err;kern.notice;auth.notice                   /dev/sysmsg
*.err;kern.debug;daemon.notice;mail.crit        /var/adm/messages

*.alert;kern.err;daemon.err                     operator
*.alert                                         root

*.emerg                                         *


mail.debug                      ifdef(`LOGHOST', /var/log/syslog, @loghost)

ifdef(`LOGHOST', ,
user.err                                        /dev/sysmsg
user.err                                        /var/adm/messages
user.alert                                      `root, operator'
user.emerg                                      *
)
daemon.info                                     /var/adm/messages
user.info                                       /var/adm/messages
auth.info                                       /var/adm/messages


arnold-- i checked reboot time of machine and start up server in catalina.out and pasted above..
its been running fine for almost an year. I think i need to make sure whether it was started manually by someone in my team..
In case,,how can i add delay to startup of script to a higher value?

Tomunique - i have checked to startup rc script. it resides in rc3.d. and its same as kill script.


bash-3.00$ pwd
/etc/rc3.d
bash-3.00$ ls -l S99startLionnPRODEnv
-rwxr--r--   1 root     root        1064 Feb 19  2009 S99startLionnPRODEnv
bash-3.00$


bash-3.00$ diff S99startLionnPRODEnv /etc/rc2.d/K99stopLionnPRODEnv
bash-3.00$ pwd
/etc/rc3.d

and we use maven which starts apache ,siteminder and tomcat at once taking care of dependency.

it was started manually by one of my team member after 4 hours:(
SOLUTION
Link to home
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
Thank you jgiordano. i tried your suggestion.
bash-3.00$ svcs
STATE          STIME    FMRI
legacy_run     Mar_26   lrc:/etc/rcS_d/S29wrsmcfg
legacy_run     Mar_26   lrc:/etc/rc2_d/S01nddconfig
legacy_run     Mar_26   lrc:/etc/rc2_d/S20sysetup
legacy_run     Mar_26   lrc:/etc/rc2_d/S42ncakmod
legacy_run     Mar_26   lrc:/etc/rc2_d/S45vxpbx_exchanged
legacy_run     Mar_26   lrc:/etc/rc2_d/S47pppd
legacy_run     Mar_26   lrc:/etc/rc2_d/S50vxvail
legacy_run     Mar_26   lrc:/etc/rc2_d/S64preisisd
legacy_run     Mar_26   lrc:/etc/rc2_d/S70vxatd
legacy_run     Mar_26   lrc:/etc/rc2_d/S73cachefs_daemon
legacy_run     Mar_26   lrc:/etc/rc2_d/S73isisd
legacy_run     Mar_26   lrc:/etc/rc2_d/S750vxpal_gridnode
legacy_run     Mar_26   lrc:/etc/rc2_d/S75vxpal_StorageAgent
legacy_run     Mar_26   lrc:/etc/rc2_d/S75vxsmfd
legacy_run     Mar_26   lrc:/etc/rc2_d/S760vxpal_actionagent
legacy_run     Mar_26   lrc:/etc/rc2_d/S79opsware-agent
legacy_run     Mar_26   lrc:/etc/rc2_d/S89PRESERVE
legacy_run     Mar_26   lrc:/etc/rc2_d/S91afbinit
legacy_run     Mar_26   lrc:/etc/rc2_d/S91gfbinit
legacy_run     Mar_26   lrc:/etc/rc2_d/S91ifbinit
legacy_run     Mar_26   lrc:/etc/rc2_d/S91jfbinit
legacy_run     Mar_26   lrc:/etc/rc2_d/S91kfbinit
legacy_run     Mar_26   lrc:/etc/rc2_d/S91zuluinit
legacy_run     Mar_26   lrc:/etc/rc2_d/S94ncalogd
legacy_run     Mar_26   lrc:/etc/rc2_d/S94vxnm-vxnetd
legacy_run     Mar_26   lrc:/etc/rc2_d/S96vradmind
legacy_run     Mar_26   lrc:/etc/rc2_d/S96vxrsyncd
legacy_run     Mar_26   lrc:/etc/rc2_d/S98deallocate
legacy_run     Mar_26   lrc:/etc/rc2_d/S99bokcfg
legacy_run     Mar_26   lrc:/etc/rc2_d/S99boksm
legacy_run     Mar_26   lrc:/etc/rc2_d/S99eccmad
legacy_run     Mar_26   lrc:/etc/rc2_d/S99sneep
legacy_run     Mar_26   lrc:/etc/rc2_d/S99xboksm-autoreg
legacy_run     Mar_26   lrc:/etc/rc3_d/S69esmrc
legacy_run     Mar_26   lrc:/etc/rc3_d/S75vxsmfd
legacy_run     Mar_26   lrc:/etc/rc3_d/S78bgsu
legacy_run     Mar_26   lrc:/etc/rc3_d/S80mipagent
legacy_run     Mar_26   lrc:/etc/rc3_d/S89jpmc-net-snmp
legacy_run     Mar_26   lrc:/etc/rc3_d/S95X11R6
legacy_run     Mar_26   lrc:/etc/rc3_d/S95dbora
legacy_run     Mar_26   lrc:/etc/rc3_d/S98control-m
legacy_run     Mar_26   lrc:/etc/rc3_d/S99Tivoli_lcf1
legacy_run     Mar_26   lrc:/etc/rc3_d/S99aqueduct_nrpe
legacy_run     Mar_26   lrc:/etc/rc3_d/S99gcstartup
legacy_run     Mar_26   lrc:/etc/rc3_d/S99infra
legacy_run     Mar_26   lrc:/etc/rc3_d/S99startTiggerPRODEnv
legacy_run     Mar_26   lrc:/etc/rc3_d/S99vxtf_chklog
online         Mar_26   svc:/system/svc/restarter:default
online         Mar_26   svc:/network/pfil:default
online         Mar_26   svc:/network/tnctl:default
online         Mar_26   svc:/network/loopback:default
online         Mar_26   svc:/system/installupdates:default
online         Mar_26   svc:/network/physical:default
online         Mar_26   svc:/system/identity:node
online         Mar_26   svc:/system/metainit:default
online         Mar_26   svc:/system/vxvm/vxvm-sysboot:default
online         Mar_26   svc:/system/filesystem/root:default
online         Mar_26   svc:/system/scheduler:default
online         Mar_26   svc:/system/vxvm/vxvm-startup1:default
online         Mar_26   svc:/system/boot-archive:default
online         Mar_26   svc:/system/filesystem/usr:default
online         Mar_26   svc:/system/keymap:default
online         Mar_26   svc:/system/device/local:default
online         Mar_26   svc:/system/filesystem/minimal:default
online         Mar_26   svc:/system/resource-mgmt:default
online         Mar_26   svc:/system/rmtmpfiles:default
online         Mar_26   svc:/system/name-service-cache:default
online         Mar_26   svc:/system/identity:domain
online         Mar_26   svc:/site/JPMCsvc_prop_mods:default
online         Mar_26   svc:/system/coreadm:default
online         Mar_26   svc:/system/sysevent:default
online         Mar_26   svc:/system/cryptosvc:default
online         Mar_26   svc:/system/device/fc-fabric:default
online         Mar_26   svc:/system/picl:default
online         Mar_26   svc:/system/manifest-import:default
online         Mar_26   svc:/application/print/ppd-cache-update:default
online         Mar_26   svc:/site/network/JPMCnetstart:default
online         Mar_26   svc:/milestone/network:default
online         Mar_26   svc:/network/initial:default
online         Mar_26   svc:/network/service:default
online         Mar_26   svc:/network/ldap/client:default
online         Mar_26   svc:/milestone/name-services:default
online         Mar_26   svc:/network/ntp:default
online         Mar_26   svc:/system/vxvm/vxvm-startup2:default
online         Mar_26   svc:/system/vxvm/vxvm-startvc:default
online         Mar_26   svc:/milestone/devices:default
online         Mar_26   svc:/system/vxvm/vxvm-reconfig:default
online         Mar_26   svc:/milestone/single-user:default
online         Mar_26   svc:/system/filesystem/local:default
online         Mar_26   svc:/network/shares/group:default
online         Mar_26   svc:/system/cron:default
online         Mar_26   svc:/system/sysidtool:net
online         Mar_26   svc:/system/boot-archive-update:default
online         Mar_26   svc:/system/vxfs/vxfsldlic:default
online         Mar_26   svc:/network/routing-setup:default
online         Mar_26   svc:/network/rpc/bind:default
online         Mar_26   svc:/system/sysidtool:system
online         Mar_26   svc:/network/nfs/cbd:default
online         Mar_26   svc:/network/nfs/status:default
online         Mar_26   svc:/network/nfs/mapid:default
online         Mar_26   svc:/milestone/sysconfig:default
online         Mar_26   svc:/network/nfs/nlockmgr:default
online         Mar_26   svc:/system/sac:default
online         Mar_26   svc:/network/inetd:default
online         Mar_26   svc:/system/postrun:default
online         Mar_26   svc:/system/utmp:default
online         Mar_26   svc:/network/nfs/client:default
online         Mar_26   svc:/system/filesystem/autofs:default
online         Mar_26   svc:/application/stosreg:default
online         Mar_26   svc:/system/dumpadm:default
online         Mar_26   svc:/system/system-log:default
online         Mar_26   svc:/application/management/seaport:default
online         Mar_26   svc:/system/auditd:default
online         Mar_26   svc:/system/console-login:default
online         Mar_26   svc:/application/font/fc-cache:default
online         Mar_26   svc:/system/fmd:default
online         Mar_26   svc:/network/rpc/meta:default
online         Mar_26   svc:/network/stdiscover:default
online         Mar_26   svc:/network/stlisten:default
online         Mar_26   svc:/network/bpcd/tcp:default
online         Mar_26   svc:/network/vnetd/tcp:default
online         Mar_26   svc:/network/vopied/tcp:default
online         Mar_26   svc:/network/bpjava-msvc/tcp:default
online         Mar_26   svc:/network/ctmagent/tcp:default
online         Mar_26   svc:/system/mdmonitor:default
online         Mar_26   svc:/milestone/multi-user:default
online         Mar_26   svc:/system/vxvm/vxvm-recover:default
online         Mar_26   svc:/application/cde-printinfo:default
online         Mar_26   svc:/milestone/multi-user-server:default

$ who -r
   .       run-level 3  Mar 26 08:06     3      0  S
A snippet when machine was going down as i know its reboots at 8.
Mar 26 08:00:09 slfappprd01 root[13307]: [ID 702911 user.crit] Stopping agent
Mar 26 08:00:09 slfappprd01 root[13307]: [ID 702911 user.crit] Stopping agent
Mar 26 08:00:33 slfappprd01 su: [ID 366847 auth.info] 'su ctmag' succeeded for root on /dev/???
Mar 26 08:00:33 slfappprd01 last message repeated 2 times
Mar 26 08:00:33 slfappprd01 boks_sshd[2839]: [ID 800047 auth.info] Received signal 15; terminating.
Mar 26 08:00:36 slfappprd01 syseventd[430]: [ID 617319 daemon.error] SIGHUP caught - reloading modules
Mar 26 08:00:36 slfappprd01 syseventd[430]: [ID 617319 daemon.error] SIGHUP caught - reloading modules
Mar 26 08:00:36 slfappprd01 vxesd[785]: [ID 477869 daemon.notice] Event source daemon stopped
Mar 26 08:00:36 slfappprd01 vxesd[785]: [ID 477869 daemon.notice] Event source daemon stopped
Mar 26 08:00:37 slfappprd01 syseventd[430]: [ID 661968 daemon.error] Daemon restarted
Mar 26 08:00:37 slfappprd01 syseventd[430]: [ID 661968 daemon.error] Daemon restarted
Mar 26 08:00:47 slfappprd01 rpc.metad: [ID 702911 daemon.error] Terminated
Mar 26 08:00:47 slfappprd01 rpc.metad: [ID 702911 daemon.error] Terminated
Mar 26 08:00:47 slfappprd01 syslogd: going down on signal 15
Mar 26 08:00:53 slfappprd01 rpcbind: [ID 564983 daemon.error] rpcbind terminating on signal.
Mar 26 08:00:53 slfappprd01 rpcbind: [ID 564983 daemon.error] rpcbind terminating on signal.
Mar 26 08:05:43 slfappprd01 ifconfig[28]: [ID 293258 user.warning] libsldap: Status: 2  Mesg: Unable to load configuration '/var/ldap/ldap_client_
file' ('').

I have seen in catalina.out that tomcat generally comes up around 8:13 so i checked /var/adm/messages for close to 8:13.
### su to application id
Mar 26 08:09:28 slfappprd01 su: [ID 366847 auth.info] 'su compass'' succeeded for root on /dev/???
Mar 26 08:09:29 slfappprd01 nrpe[6163]: [ID 320800 daemon.info] INFO: SSL/TLS initialized. All network traffic will be encrypted.
Mar 26 08:09:27 slfappprd01 last message repeated 2 times
Mar 26 08:09:29 slfappprd01 nrpe[6164]: [ID 601491 daemon.notice] Starting up daemon

##all over in messages file at different places.
Mar 26 08:09:36 slfappprd01 fcsm: [ID 517869 kern.warning] WARNING: fcsm(0): ct_intr: CT command <0x118> to did 0xfffffa failed state: Local Rejec
t(0x3); reason: Undefined(0x0)
Mar 26 08:09:36 slfappprd01 fcsm: [ID 517869 kern.warning] WARNING: fcsm(0): fc packet to DID 0xfffffa failed state: Local Reject(0x3); reason: Il
legal Request(0xe)
Mar 26 08:09:51 slfappprd01 last message repeated 5 times
Mar 26 08:09:51 slfappprd01 fcsm: [ID 517869 kern.warning] WARNING: fcsm(0): ct_intr: CT command <0x118> to did 0xfffffa failed state: Local Rejec
t(0x3); reason: Undefined(0x0)
Mar 26 08:09:51 slfappprd01 fcsm: [ID 517869 kern.warning] WARNING: fcsm(0): fc packet to DID 0xfffffa failed state: Local Reject(0x3); reason: Il
legal Request(0xe)

## during 8:13 again su to compass
Mar 26 08:13:52 slfappprd01 fcsm: [ID 517869 kern.warning] WARNING: fcsm(1): fc packet to DID 0xfffffa failed state: Local Reject(0x3); reason: Il
legal Request(0xe)
Mar 26 08:14:07 slfappprd01 last message repeated 5 times
Mar 26 08:14:07 slfappprd01 fcsm: [ID 517869 kern.warning] WARNING: fcsm(1): ct_intr: CT command <0x118> to did 0xfffffa failed state: Local Rejec
t(0x3); reason: Undefined(0x0)
Mar 26 08:14:37 slfappprd01 su: [ID 366847 auth.info] 'su aqueduct' succeeded for root on /dev/???
Mar 26 08:14:37 slfappprd01 <38>bgsud[5005]: bgsu monitoring su aqueduct by root
Mar 26 08:14:37 slfappprd01 last message repeated 1 time
Mar 26 08:20:02 slfappprd01 boks_sshd[7152]: [ID 800047 auth.info] Accepted publickey for kru_bank from 169.113.208.196 port 43904 ssh2
Mar 26 08:20:03 slfappprd01 boks_sshd[7152]: [ID 800047 auth.info] subsystem request for sftp
Mar 26 08:20:03 slfappprd01 boks_sshd[7154]: [ID 800047 auth.info] Accepted publickey for kru_bank from 169.113.208.196 port 43963 ssh2
Mar 26 08:13:52 slfappprd01 last message repeated 3 times
Mar 26 08:13:52 slfappprd01 fcsm: [ID 517869 kern.warning] WARNING: fcsm(1): ct_intr: CT command <0x118> to did 0xfffffa failed state: Local Rejec
t(0x3); reason: Undefined(0x0)
Mar 26 08:13:52 slfappprd01 fcsm: [ID 517869 kern.warning] WARNING: fcsm(1): fc packet to DID 0xfffffa failed state: Local Reject(0x3); reason: Il
legal Request(0xe)
Mar 26 08:14:07 slfappprd01 last message repeated 5 times
Mar 26 08:14:07 slfappprd01 fcsm: [ID 517869 kern.warning] WARNING: fcsm(1): ct_intr: CT command <0x118> to did 0xfffffa failed state: Local Rejec
t(0x3); reason: Undefined(0x0)
Mar 26 08:14:37 slfappprd01 su: [ID 366847 auth.info] 'su compass' succeeded for root on /dev/???
Mar 26 08:14:37 slfappprd01 <38>bgsud[5005]: bgsu monitoring su compass by root
Mar 26 08:14:37 slfappprd01 last message repeated 1 time
Mar 26 08:20:02 slfappprd01 boks_sshd[7152]: [ID 800047 auth.info] Accepted publickey for kru_bank from 169.113.208.196 port 43904 ssh2
Mar 26 08:20:03 slfappprd01 boks_sshd[7152]: [ID 800047 auth.info] subsystem request for sftp
Mar 26 08:20:03 slfappprd01 boks_sshd[7154]: [ID 800047 auth.info] Accepted publickey for kru_bank from 169.113.208.196 port 43963 ssh2
Mar 26 08:13:41 slfappprd01 last message repeated 87 times
Mar 26 08:21:04 slfappprd01 boks_sshd[7188]: [ID 800047 auth.info] Accepted publickey for kru_bank from 169.113.208.196 port 44007 ssh2
Mar 26 08:21:04 slfappprd01 boks_sshd[7188]: [ID 800047 auth.info] subsystem request for sftp

it suppose to show that it tried to execute the script for starting up the tomcat?

Please suggest.
please read legacy_run     Mar_26   lrc:/etc/rc3_d/S99startTiggerPRODEnv
as               legacy_run     Mar_26   lrc:/etc/rc3_d/S99startLionnPRODEnv

forgot to change the name before posting.
ASKER CERTIFIED SOLUTION
Link to home
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
it looks like there may have been a fiber event around the time it was trying to bring up the app.
Thank you for your prompt reply.

$ /usr/sbin/luxadm -e port
Permission denied - /devices/pci@1c,600000/lpfc@1/fp@0,0:devctl.

Permission denied - /devices/pci@1e,600000/lpfc@2/fp@0,0:devctl.


$ iostat -eE
           ---- errors ---
device    s/w h/w trn tot
md0       0   0   0   0
md1       0   0   0   0
md10      0   0   0   0
md11      0   0   0   0
md20      0   0   0   0
md21      0   0   0   0
ramdisk1  0   0   0   0
sd0       0   0   0   0
sd1       0   0   0   0
sd2       0   0   0   0
sd3       1   0   1   2
sd4       0   0   0   0
ssd0      0   0   0   0
ssd1      0   0   0   0
ssd2      0   0   0   0
ssd3      0   0   0   0
ssd4      0   0   0   0
ssd5      0   0   0   0
ssd6      0   0   0   0
ssd7      0   0   0   0
ssd8      0   0   0   0
ssd9      0   0   0   0
ssd10     0   0   0   0
ssd11     0   0   0   0
ssd12     0   0   0   0
ssd13     0   0   0   0
ssd14     0   0   0   0
ssd15     0   0   0   0
ssd16     0   0   0   0
ssd17     0   0   0   0
ssd18     0   0   0   0
ssd19     0   0   0   0
sd0       Soft Errors: 0 Hard Errors: 0 Transport Errors: 0
Vendor: SEAGATE  Product: ST314670LSUN146G Revision: 045A Serial No: 054842ZFNF
Size: 146.80GB <146800115712 bytes>
Media Error: 0 Device Not Ready: 0 No Device: 0 Recoverable: 0
Illegal Request: 0 Predictive Failure Analysis: 0
sd1       Soft Errors: 0 Hard Errors: 0 Transport Errors: 0
Vendor: SEAGATE  Product: ST314670LSUN146G Revision: 045A Serial No: 054842ZMNZ
Size: 146.80GB <146800115712 bytes>
Media Error: 0 Device Not Ready: 0 No Device: 0 Recoverable: 0
Illegal Request: 0 Predictive Failure Analysis: 0
sd2       Soft Errors: 0 Hard Errors: 0 Transport Errors: 0
Vendor: SEAGATE  Product: ST314670LSUN146G Revision: 045A Serial No: 054642SNPE
Size: 146.80GB <146800115712 bytes>
Media Error: 0 Device Not Ready: 0 No Device: 0 Recoverable: 0
Illegal Request: 0 Predictive Failure Analysis: 0
sd3       Soft Errors: 1 Hard Errors: 0 Transport Errors: 1
Vendor: TOSHIBA  Product: ODD-DVD SD-C2732 Revision: 1055 Serial No:
Size: 0.00GB <0 bytes>
Media Error: 0 Device Not Ready: 0 No Device: 0 Recoverable: 0
Illegal Request: 1 Predictive Failure Analysis: 0
sd4       Soft Errors: 0 Hard Errors: 0 Transport Errors: 0
Vendor: SEAGATE  Product: ST314670LSUN146G Revision: 045A Serial No: 054842TR18
Size: 146.80GB <146800115712 bytes>
Media Error: 0 Device Not Ready: 0 No Device: 0 Recoverable: 0
Illegal Request: 0 Predictive Failure Analysis: 0
ssd0      Soft Errors: 0 Hard Errors: 0 Transport Errors: 0
Vendor: EMC      Product: SYMMETRIX        Revision: 5773 Serial No:
Size: 31.95GB <31947816960 bytes>
Media Error: 0 Device Not Ready: 0 No Device: 0 Recoverable: 0
Illegal Request: 0 Predictive Failure Analysis: 0
ssd1      Soft Errors: 0 Hard Errors: 0 Transport Errors: 0
Vendor: EMC      Product: SYMMETRIX        Revision: 5773 Serial No:
Size: 31.95GB <31947816960 bytes>
Media Error: 0 Device Not Ready: 0 No Device: 0 Recoverable: 0
Illegal Request: 0 Predictive Failure Analysis: 0
ssd2      Soft Errors: 0 Hard Errors: 0 Transport Errors: 0
Vendor: EMC      Product: SYMMETRIX        Revision: 5773 Serial No:
Size: 31.95GB <31947816960 bytes>
Media Error: 0 Device Not Ready: 0 No Device: 0 Recoverable: 0
Illegal Request: 0 Predictive Failure Analysis: 0
ssd3      Soft Errors: 0 Hard Errors: 0 Transport Errors: 0
Vendor: EMC      Product: SYMMETRIX        Revision: 5773 Serial No:
Size: 31.95GB <31947816960 bytes>
Media Error: 0 Device Not Ready: 0 No Device: 0 Recoverable: 0
Illegal Request: 0 Predictive Failure Analysis: 0
ssd4      Soft Errors: 0 Hard Errors: 0 Transport Errors: 0
Vendor: EMC      Product: SYMMETRIX        Revision: 5773 Serial No:
Size: 31.95GB <31947816960 bytes>
Media Error: 0 Device Not Ready: 0 No Device: 0 Recoverable: 0
Illegal Request: 0 Predictive Failure Analysis: 0
ssd5      Soft Errors: 0 Hard Errors: 0 Transport Errors: 0
Vendor: EMC      Product: SYMMETRIX        Revision: 5773 Serial No:
Size: 31.95GB <31947816960 bytes>
Media Error: 0 Device Not Ready: 0 No Device: 0 Recoverable: 0
Illegal Request: 0 Predictive Failure Analysis: 0
ssd6      Soft Errors: 0 Hard Errors: 0 Transport Errors: 0
Vendor: EMC      Product: SYMMETRIX        Revision: 5773 Serial No:
Size: 31.95GB <31947816960 bytes>
Media Error: 0 Device Not Ready: 0 No Device: 0 Recoverable: 0
Illegal Request: 0 Predictive Failure Analysis: 0
ssd7      Soft Errors: 0 Hard Errors: 0 Transport Errors: 0
Vendor: EMC      Product: SYMMETRIX        Revision: 5773 Serial No:
Size: 31.95GB <31947816960 bytes>
Media Error: 0 Device Not Ready: 0 No Device: 0 Recoverable: 0
Illegal Request: 0 Predictive Failure Analysis: 0
ssd8      Soft Errors: 0 Hard Errors: 0 Transport Errors: 0
Vendor: EMC      Product: SYMMETRIX        Revision: 5773 Serial No:
Size: 31.95GB <31947816960 bytes>
Media Error: 0 Device Not Ready: 0 No Device: 0 Recoverable: 0
Illegal Request: 0 Predictive Failure Analysis: 0
ssd9      Soft Errors: 0 Hard Errors: 0 Transport Errors: 0
Vendor: EMC      Product: SYMMETRIX        Revision: 5773 Serial No:
Size: 31.95GB <31947816960 bytes>
Media Error: 0 Device Not Ready: 0 No Device: 0 Recoverable: 0
Illegal Request: 0 Predictive Failure Analysis: 0
ssd10     Soft Errors: 0 Hard Errors: 0 Transport Errors: 0
Vendor: EMC      Product: SYMMETRIX        Revision: 5773 Serial No:
Size: 31.95GB <31947816960 bytes>
Media Error: 0 Device Not Ready: 0 No Device: 0 Recoverable: 0
Illegal Request: 0 Predictive Failure Analysis: 0
ssd11     Soft Errors: 0 Hard Errors: 0 Transport Errors: 0
Vendor: EMC      Product: SYMMETRIX        Revision: 5773 Serial No:
Size: 31.95GB <31947816960 bytes>
Media Error: 0 Device Not Ready: 0 No Device: 0 Recoverable: 0
Illegal Request: 0 Predictive Failure Analysis: 0
ssd12     Soft Errors: 0 Hard Errors: 0 Transport Errors: 0
Vendor: EMC      Product: SYMMETRIX        Revision: 5773 Serial No:
Size: 0.00GB <2949120 bytes>
Media Error: 0 Device Not Ready: 0 No Device: 0 Recoverable: 0
Illegal Request: 0 Predictive Failure Analysis: 0
ssd13     Soft Errors: 0 Hard Errors: 0 Transport Errors: 0
Vendor: EMC      Product: SYMMETRIX        Revision: 5773 Serial No:
Size: 0.00GB <2949120 bytes>
Media Error: 0 Device Not Ready: 0 No Device: 0 Recoverable: 0
Illegal Request: 0 Predictive Failure Analysis: 0
ssd14     Soft Errors: 0 Hard Errors: 0 Transport Errors: 0
Vendor: EMC      Product: SYMMETRIX        Revision: 5773 Serial No:
Size: 31.95GB <31947816960 bytes>
Media Error: 0 Device Not Ready: 0 No Device: 0 Recoverable: 0
Illegal Request: 0 Predictive Failure Analysis: 0
ssd15     Soft Errors: 0 Hard Errors: 0 Transport Errors: 0
Vendor: EMC      Product: SYMMETRIX        Revision: 5773 Serial No:
Size: 31.95GB <31947816960 bytes>
Media Error: 0 Device Not Ready: 0 No Device: 0 Recoverable: 0
Illegal Request: 0 Predictive Failure Analysis: 0
ssd16     Soft Errors: 0 Hard Errors: 0 Transport Errors: 0
Vendor: EMC      Product: SYMMETRIX        Revision: 5773 Serial No:
Size: 31.95GB <31947816960 bytes>
Media Error: 0 Device Not Ready: 0 No Device: 0 Recoverable: 0
Illegal Request: 0 Predictive Failure Analysis: 0
ssd17     Soft Errors: 0 Hard Errors: 0 Transport Errors: 0
Vendor: EMC      Product: SYMMETRIX        Revision: 5773 Serial No:
Size: 31.95GB <31947816960 bytes>
Media Error: 0 Device Not Ready: 0 No Device: 0 Recoverable: 0
Illegal Request: 0 Predictive Failure Analysis: 0
ssd18     Soft Errors: 0 Hard Errors: 0 Transport Errors: 0
Vendor: EMC      Product: SYMMETRIX        Revision: 5773 Serial No:
Size: 31.95GB <31947816960 bytes>
Media Error: 0 Device Not Ready: 0 No Device: 0 Recoverable: 0
Illegal Request: 0 Predictive Failure Analysis: 0
ssd19     Soft Errors: 0 Hard Errors: 0 Transport Errors: 0
Vendor: EMC      Product: SYMMETRIX        Revision: 5773 Serial No:
Size: 31.95GB <31947816960 bytes>
Media Error: 0 Device Not Ready: 0 No Device: 0 Recoverable: 0
Illegal Request: 0 Predictive Failure Analysis: 0
you have errors on the sd3 device maybe there were some issues upon reboot. It looks like it might map back to solaris volume manager
I escalated to my UNIX team and they are saying they dont see any unusual thing and asking to wait on next reboot .Well lets see ..i am going to run all the commands provided by you guys and compare if it comes up fine and update this thread.

Thank you all of you for your precious time and guidance.
I would wait and see if it happens again, it would try to increase logging on the startup scripts.
Hi All,

Server rebooted today again and application came up fine automatically. I ran the commands and result is similar to previous week output. sd3 device has the same error.
Dont know what exactly change.

Thank you guys for sharing your knowledge.

$svcs
STATE          STIME    FMRI
legacy_run      8:06:31 lrc:/etc/rcS_d/S29wrsmcfg
legacy_run      8:06:41 lrc:/etc/rc2_d/S01nddconfig
legacy_run      8:06:41 lrc:/etc/rc2_d/S20sysetup
legacy_run      8:06:41 lrc:/etc/rc2_d/S42ncakmod
legacy_run      8:06:42 lrc:/etc/rc2_d/S45vxpbx_exchanged
legacy_run      8:06:42 lrc:/etc/rc2_d/S47pppd
legacy_run      8:06:42 lrc:/etc/rc2_d/S50vxvail
legacy_run      8:06:42 lrc:/etc/rc2_d/S64preisisd
legacy_run      8:06:43 lrc:/etc/rc2_d/S70vxatd
legacy_run      8:06:43 lrc:/etc/rc2_d/S73cachefs_daemon
legacy_run      8:06:53 lrc:/etc/rc2_d/S73isisd
legacy_run      8:06:54 lrc:/etc/rc2_d/S750vxpal_gridnode
legacy_run      8:07:12 lrc:/etc/rc2_d/S75vxpal_StorageAgent
legacy_run      8:07:12 lrc:/etc/rc2_d/S75vxsmfd
legacy_run      8:07:20 lrc:/etc/rc2_d/S760vxpal_actionagent
legacy_run      8:07:21 lrc:/etc/rc2_d/S79opsware-agent
legacy_run      8:07:21 lrc:/etc/rc2_d/S89PRESERVE
legacy_run      8:07:21 lrc:/etc/rc2_d/S91afbinit
legacy_run      8:07:21 lrc:/etc/rc2_d/S91gfbinit
legacy_run      8:07:21 lrc:/etc/rc2_d/S91ifbinit
legacy_run      8:07:21 lrc:/etc/rc2_d/S91jfbinit
legacy_run      8:07:21 lrc:/etc/rc2_d/S91kfbinit
legacy_run      8:07:21 lrc:/etc/rc2_d/S91zuluinit
legacy_run      8:07:21 lrc:/etc/rc2_d/S94ncalogd
legacy_run      8:07:22 lrc:/etc/rc2_d/S94vxnm-vxnetd
legacy_run      8:07:22 lrc:/etc/rc2_d/S96vradmind
legacy_run      8:07:23 lrc:/etc/rc2_d/S96vxrsyncd
legacy_run      8:07:23 lrc:/etc/rc2_d/S98deallocate
legacy_run      8:07:24 lrc:/etc/rc2_d/S99bokcfg
legacy_run      8:07:55 lrc:/etc/rc2_d/S99boksm
legacy_run      8:07:55 lrc:/etc/rc2_d/S99eccmad
legacy_run      8:08:04 lrc:/etc/rc2_d/S99sneep
legacy_run      8:08:04 lrc:/etc/rc2_d/S99xboksm-autoreg
legacy_run      8:08:06 lrc:/etc/rc3_d/S69esmrc
legacy_run      8:08:06 lrc:/etc/rc3_d/S75vxsmfd
legacy_run      8:08:09 lrc:/etc/rc3_d/S78bgsu
legacy_run      8:08:09 lrc:/etc/rc3_d/S80mipagent
legacy_run      8:08:15 lrc:/etc/rc3_d/S89jpmc-net-snmp
legacy_run      8:08:15 lrc:/etc/rc3_d/S95X11R6
legacy_run      8:09:02 lrc:/etc/rc3_d/S95dbora
legacy_run      8:09:04 lrc:/etc/rc3_d/S98control-m
legacy_run      8:09:04 lrc:/etc/rc3_d/S99Tivoli_lcf1
legacy_run      8:09:05 lrc:/etc/rc3_d/S99aqueduct_nrpe
legacy_run      8:09:05 lrc:/etc/rc3_d/S99gcstartup
legacy_run      8:09:05 lrc:/etc/rc3_d/S99infra
legacy_run      8:14:15 lrc:/etc/rc3_d/S99startTiggerPRODEnv
legacy_run      8:14:15 lrc:/etc/rc3_d/S99vxtf_chklog
online          8:05:39 svc:/system/svc/restarter:default
online          8:05:40 svc:/network/pfil:default
online          8:05:40 svc:/network/tnctl:default
online          8:05:40 svc:/network/loopback:default
online          8:05:41 svc:/system/installupdates:default
online          8:05:52 svc:/network/physical:default
online          8:05:53 svc:/system/identity:node
online          8:05:53 svc:/system/metainit:default
online          8:05:55 svc:/system/vxvm/vxvm-sysboot:default
online          8:05:56 svc:/system/filesystem/root:default
online          8:05:56 svc:/system/scheduler:default
online          8:05:57 svc:/system/vxvm/vxvm-startup1:default
online          8:05:57 svc:/system/boot-archive:default
online          8:05:58 svc:/system/filesystem/usr:default
online          8:05:59 svc:/system/keymap:default
online          8:05:59 svc:/system/device/local:default
online          8:05:59 svc:/system/filesystem/minimal:default
online          8:05:59 svc:/system/coreadm:default
online          8:05:59 svc:/system/resource-mgmt:default
online          8:05:59 svc:/site/JPMCsvc_prop_mods:default
online          8:05:59 svc:/system/rmtmpfiles:default
online          8:05:59 svc:/system/name-service-cache:default
online          8:05:59 svc:/system/identity:domain
online          8:05:59 svc:/system/sysevent:default
online          8:05:59 svc:/system/cryptosvc:default
online          8:05:59 svc:/system/device/fc-fabric:default
online          8:05:59 svc:/system/picl:default
online          8:06:00 svc:/system/manifest-import:default
online          8:06:17 svc:/application/print/ppd-cache-update:default
online          8:06:28 svc:/site/network/JPMCnetstart:default
online          8:06:28 svc:/milestone/network:default
online          8:06:29 svc:/network/initial:default
online          8:06:29 svc:/network/service:default
online          8:06:30 svc:/system/vxvm/vxvm-startup2:default
online          8:06:31 svc:/system/vxvm/vxvm-startvc:default
online          8:06:31 svc:/milestone/devices:default
online          8:06:31 svc:/system/vxvm/vxvm-reconfig:default
online          8:06:31 svc:/milestone/single-user:default
online          8:06:32 svc:/network/ldap/client:default
online          8:06:33 svc:/milestone/name-services:default
online          8:06:34 svc:/system/filesystem/local:default
online          8:06:35 svc:/network/shares/group:default
online          8:06:35 svc:/system/boot-archive-update:default
online          8:06:35 svc:/system/cron:default
online          8:06:35 svc:/system/sysidtool:net
online          8:06:36 svc:/network/routing-setup:default
online          8:06:36 svc:/system/vxfs/vxfsldlic:default
online          8:06:36 svc:/network/ntp:default
online          8:06:36 svc:/network/rpc/bind:default
online          8:06:37 svc:/network/nfs/cbd:default
online          8:06:37 svc:/system/sysidtool:system
online          8:06:37 svc:/network/nfs/mapid:default
online          8:06:37 svc:/network/nfs/status:default
online          8:06:37 svc:/network/nfs/nlockmgr:default
online          8:06:37 svc:/milestone/sysconfig:default
online          8:06:37 svc:/system/sac:default
online          8:06:37 svc:/network/inetd:default
online          8:06:37 svc:/system/utmp:default
online          8:06:37 svc:/network/nfs/client:default
online          8:06:37 svc:/system/postrun:default
online          8:06:37 svc:/application/stosreg:default
online          8:06:37 svc:/system/filesystem/autofs:default
online          8:06:38 svc:/system/dumpadm:default
online          8:06:38 svc:/system/system-log:default
online          8:06:38 svc:/application/management/seaport:default
online          8:06:38 svc:/system/auditd:default
online          8:06:38 svc:/system/console-login:default
online          8:06:39 svc:/application/font/fc-cache:default
online          8:06:39 svc:/system/fmd:default
online          8:06:39 svc:/network/rpc/meta:default
online          8:06:39 svc:/network/stdiscover:default
online          8:06:39 svc:/network/stlisten:default
online          8:06:39 svc:/network/bpcd/tcp:default
online          8:06:39 svc:/network/vnetd/tcp:default
online          8:06:39 svc:/network/vopied/tcp:default
online          8:06:39 svc:/network/bpjava-msvc/tcp:default
online          8:06:39 svc:/network/ctmagent/tcp:default
online          8:06:40 svc:/system/mdmonitor:default
online          8:08:04 svc:/milestone/multi-user:default
online          8:08:04 svc:/system/vxvm/vxvm-recover:default
online          8:08:05 svc:/application/cde-printinfo:default
online          8:14:15 svc:/milestone/multi-user-server:default


$ iostat -eE
           ---- errors ---
device  s/w h/w trn tot
md0     0   0   0   0
md1     0   0   0   0
md10    0   0   0   0
md11    0   0   0   0
md20    0   0   0   0
md21    0   0   0   0
sd0     0   0   0   0
sd1     0   0   0   0
sd2     0   0   0   0
sd3     1   0   1   2
sd4     0   0   0   0
ssd0    0   0   0   0
ssd1    0   0   0   0
ssd2    0   0   0   0
ssd3    0   0   0   0
ssd4    0   0   0   0
ssd5    0   0   0   0
ssd6    0   0   0   0
ssd7    0   0   0   0
ssd8    0   0   0   0
ssd9    0   0   0   0
ssd10   0   0   0   0
ssd11   0   0   0   0
ssd12   0   0   0   0
ssd13   0   0   0   0
ssd14   0   0   0   0
ssd15   0   0   0   0
ssd16   0   0   0   0
ssd17   0   0   0   0
ssd18   0   0   0   0
ssd19   0   0   0   0
sd0       Soft Errors: 0 Hard Errors: 0 Transport Errors: 0
Vendor: SEAGATE  Product: ST314670LSUN146G Revision: 045A Serial No: 054842ZFNF
Size: 146.80GB <146800115712 bytes>
Media Error: 0 Device Not Ready: 0 No Device: 0 Recoverable: 0
Illegal Request: 0 Predictive Failure Analysis: 0
sd1       Soft Errors: 0 Hard Errors: 0 Transport Errors: 0
Vendor: SEAGATE  Product: ST314670LSUN146G Revision: 045A Serial No: 054842ZMNZ
Size: 146.80GB <146800115712 bytes>
Media Error: 0 Device Not Ready: 0 No Device: 0 Recoverable: 0
Illegal Request: 0 Predictive Failure Analysis: 0
sd2       Soft Errors: 0 Hard Errors: 0 Transport Errors: 0
Vendor: SEAGATE  Product: ST314670LSUN146G Revision: 045A Serial No: 054642SNPE
Size: 146.80GB <146800115712 bytes>
Media Error: 0 Device Not Ready: 0 No Device: 0 Recoverable: 0
Illegal Request: 0 Predictive Failure Analysis: 0
sd3       Soft Errors: 1 Hard Errors: 0 Transport Errors: 1
Vendor: TOSHIBA  Product: ODD-DVD SD-C2732 Revision: 1055 Serial No:
Size: 0.00GB <0 bytes>
Media Error: 0 Device Not Ready: 0 No Device: 0 Recoverable: 0
Illegal Request: 1 Predictive Failure Analysis: 0
sd4       Soft Errors: 0 Hard Errors: 0 Transport Errors: 0
Vendor: SEAGATE  Product: ST314670LSUN146G Revision: 045A Serial No: 054842TR18
Size: 146.80GB <146800115712 bytes>
Media Error: 0 Device Not Ready: 0 No Device: 0 Recoverable: 0
Illegal Request: 0 Predictive Failure Analysis: 0
ssd0      Soft Errors: 0 Hard Errors: 0 Transport Errors: 0
Vendor: EMC      Product: SYMMETRIX        Revision: 5773 Serial No:
Size: 31.95GB <31947816960 bytes>
Media Error: 0 Device Not Ready: 0 No Device: 0 Recoverable: 0
Illegal Request: 0 Predictive Failure Analysis: 0
ssd1      Soft Errors: 0 Hard Errors: 0 Transport Errors: 0
Vendor: EMC      Product: SYMMETRIX        Revision: 5773 Serial No:
Size: 31.95GB <31947816960 bytes>
Media Error: 0 Device Not Ready: 0 No Device: 0 Recoverable: 0
Illegal Request: 0 Predictive Failure Analysis: 0
ssd2      Soft Errors: 0 Hard Errors: 0 Transport Errors: 0
Vendor: EMC      Product: SYMMETRIX        Revision: 5773 Serial No:
Size: 31.95GB <31947816960 bytes>
Media Error: 0 Device Not Ready: 0 No Device: 0 Recoverable: 0
Illegal Request: 0 Predictive Failure Analysis: 0
ssd3      Soft Errors: 0 Hard Errors: 0 Transport Errors: 0
Vendor: EMC      Product: SYMMETRIX        Revision: 5773 Serial No:
Size: 31.95GB <31947816960 bytes>
Media Error: 0 Device Not Ready: 0 No Device: 0 Recoverable: 0
Illegal Request: 0 Predictive Failure Analysis: 0
ssd4      Soft Errors: 0 Hard Errors: 0 Transport Errors: 0
Vendor: EMC      Product: SYMMETRIX        Revision: 5773 Serial No:
Size: 31.95GB <31947816960 bytes>
Media Error: 0 Device Not Ready: 0 No Device: 0 Recoverable: 0
Illegal Request: 0 Predictive Failure Analysis: 0
ssd5      Soft Errors: 0 Hard Errors: 0 Transport Errors: 0
Vendor: EMC      Product: SYMMETRIX        Revision: 5773 Serial No:
Size: 31.95GB <31947816960 bytes>
Media Error: 0 Device Not Ready: 0 No Device: 0 Recoverable: 0
Illegal Request: 0 Predictive Failure Analysis: 0
ssd6      Soft Errors: 0 Hard Errors: 0 Transport Errors: 0
Vendor: EMC      Product: SYMMETRIX        Revision: 5773 Serial No:
Size: 31.95GB <31947816960 bytes>
Media Error: 0 Device Not Ready: 0 No Device: 0 Recoverable: 0
Illegal Request: 0 Predictive Failure Analysis: 0
ssd7      Soft Errors: 0 Hard Errors: 0 Transport Errors: 0
Vendor: EMC      Product: SYMMETRIX        Revision: 5773 Serial No:
Size: 31.95GB <31947816960 bytes>
Media Error: 0 Device Not Ready: 0 No Device: 0 Recoverable: 0
Illegal Request: 0 Predictive Failure Analysis: 0
ssd8      Soft Errors: 0 Hard Errors: 0 Transport Errors: 0
Vendor: EMC      Product: SYMMETRIX        Revision: 5773 Serial No:
Size: 31.95GB <31947816960 bytes>
Media Error: 0 Device Not Ready: 0 No Device: 0 Recoverable: 0
Illegal Request: 0 Predictive Failure Analysis: 0
ssd9      Soft Errors: 0 Hard Errors: 0 Transport Errors: 0
Vendor: EMC      Product: SYMMETRIX        Revision: 5773 Serial No:
Size: 31.95GB <31947816960 bytes>
Media Error: 0 Device Not Ready: 0 No Device: 0 Recoverable: 0
Illegal Request: 0 Predictive Failure Analysis: 0
ssd10     Soft Errors: 0 Hard Errors: 0 Transport Errors: 0
Vendor: EMC      Product: SYMMETRIX        Revision: 5773 Serial No:
Size: 31.95GB <31947816960 bytes>
Media Error: 0 Device Not Ready: 0 No Device: 0 Recoverable: 0
Illegal Request: 0 Predictive Failure Analysis: 0
ssd11     Soft Errors: 0 Hard Errors: 0 Transport Errors: 0
Vendor: EMC      Product: SYMMETRIX        Revision: 5773 Serial No:
Size: 31.95GB <31947816960 bytes>
Media Error: 0 Device Not Ready: 0 No Device: 0 Recoverable: 0
Illegal Request: 0 Predictive Failure Analysis: 0
ssd12     Soft Errors: 0 Hard Errors: 0 Transport Errors: 0
Vendor: EMC      Product: SYMMETRIX        Revision: 5773 Serial No:
Size: 0.00GB <2949120 bytes>
Media Error: 0 Device Not Ready: 0 No Device: 0 Recoverable: 0
Illegal Request: 0 Predictive Failure Analysis: 0
ssd13     Soft Errors: 0 Hard Errors: 0 Transport Errors: 0
Vendor: EMC      Product: SYMMETRIX        Revision: 5773 Serial No:
Size: 0.00GB <2949120 bytes>
Media Error: 0 Device Not Ready: 0 No Device: 0 Recoverable: 0
Illegal Request: 0 Predictive Failure Analysis: 0
ssd14     Soft Errors: 0 Hard Errors: 0 Transport Errors: 0
Vendor: EMC      Product: SYMMETRIX        Revision: 5773 Serial No:
Size: 31.95GB <31947816960 bytes>
Media Error: 0 Device Not Ready: 0 No Device: 0 Recoverable: 0
Illegal Request: 0 Predictive Failure Analysis: 0
ssd15     Soft Errors: 0 Hard Errors: 0 Transport Errors: 0
Vendor: EMC      Product: SYMMETRIX        Revision: 5773 Serial No:
Size: 31.95GB <31947816960 bytes>
Media Error: 0 Device Not Ready: 0 No Device: 0 Recoverable: 0
Illegal Request: 0 Predictive Failure Analysis: 0
ssd16     Soft Errors: 0 Hard Errors: 0 Transport Errors: 0
Vendor: EMC      Product: SYMMETRIX        Revision: 5773 Serial No:
Size: 31.95GB <31947816960 bytes>
Media Error: 0 Device Not Ready: 0 No Device: 0 Recoverable: 0
Illegal Request: 0 Predictive Failure Analysis: 0
ssd17     Soft Errors: 0 Hard Errors: 0 Transport Errors: 0
Vendor: EMC      Product: SYMMETRIX        Revision: 5773 Serial No:
Size: 31.95GB <31947816960 bytes>
Media Error: 0 Device Not Ready: 0 No Device: 0 Recoverable: 0
Illegal Request: 0 Predictive Failure Analysis: 0
ssd18     Soft Errors: 0 Hard Errors: 0 Transport Errors: 0
Vendor: EMC      Product: SYMMETRIX        Revision: 5773 Serial No:
Size: 31.95GB <31947816960 bytes>
Media Error: 0 Device Not Ready: 0 No Device: 0 Recoverable: 0
Illegal Request: 0 Predictive Failure Analysis: 0
ssd19     Soft Errors: 0 Hard Errors: 0 Transport Errors: 0
Vendor: EMC      Product: SYMMETRIX        Revision: 5773 Serial No:
Size: 31.95GB <31947816960 bytes>
Media Error: 0 Device Not Ready: 0 No Device: 0 Recoverable: 0
Illegal Request: 0 Predictive Failure Analysis: 0

If the app came up as expected it looks like it might have been a fluke issue that you might not be able to reproduce.

Are your reboots scheduled? Or are these crashes?

To see what device is using the disk do an metastat
yes,reboot is scheduled for Every week.

Here is the output:
$ /usr/sbin/metastat -p
d1 -m d11 d21 1
d11 1 1 c1t0d0s1
d21 1 1 c1t1d0s1
d0 -m d10 d20 1
d10 1 1 c1t0d0s0
d20 1 1 c1t1d0s0


$ /usr/sbin/metastat
d1: Mirror
    Submirror 0: d11
      State: Okay
    Submirror 1: d21
      State: Okay
    Pass: 1
    Read option: roundrobin (default)
    Write option: parallel (default)
    Size: 40968576 blocks (19 GB)

d11: Submirror of d1
    State: Okay
    Size: 40968576 blocks (19 GB)
    Stripe 0:
        Device     Start Block  Dbase        State Reloc Hot Spare
        c1t0d0s1          0     No            Okay   Yes


d21: Submirror of d1
    State: Okay
    Size: 40968576 blocks (19 GB)
    Stripe 0:
        Device     Start Block  Dbase        State Reloc Hot Spare
        c1t1d0s1          0     No            Okay   Yes


d0: Mirror
    Submirror 0: d10
      State: Okay
    Submirror 1: d20
      State: Okay
    Pass: 1
    Read option: roundrobin (default)
    Write option: parallel (default)
    Size: 245506176 blocks (117 GB)

d10: Submirror of d0
    State: Okay
    Size: 245506176 blocks (117 GB)
    Stripe 0:
        Device     Start Block  Dbase        State Reloc Hot Spare
        c1t0d0s0          0     No            Okay   Yes


d20: Submirror of d0
    State: Okay
    Size: 245506176 blocks (117 GB)
    Stripe 0:
        Device     Start Block  Dbase        State Reloc Hot Spare
        c1t1d0s0          0     No            Okay   Yes


Device Relocation Information:
Device   Reloc  Device ID
c1t1d0   Yes    id1,sd@SSEAGATE_ST314670LSUN146G4842ZMNZ____________3KS2ZMNZ
c1t0d0   Yes    id1,sd@SSEAGATE_ST314670LSUN146G4842ZFNF____________3KS2ZFNF
$

thanks
Didnt find the exact solution but learned a lot of things.
Thank you guys.