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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: icu812
  • Content: Threads
  • Order by date
  1. icu812

    Out of the Loop - Please assist

    Been out of the loop for three years with a back injury and have not been able to work. Am now thinking of going back. The last AIX version I worked on was 4.3. What version are we up to???? Does it differ much from 4.3? Thank You Friends
  2. icu812

    placing korn shell variables in a separate file

    I have a script that checks file system growth and works fine. I want to put the variables in the script in a seperate file though so that Operations can add and delete the File Systems we monitor from the script. Anyone got any suggestions on how I would go about accomplishing this? #...
  3. icu812

    Automating page interval

    I have a script. It works fine, except I have it running through CRON every 5 minutes and when it encounters a process that is down, I get a page every five minutes.I'd like CRON to run the script every five minutes but I want to get paged every hour when a problem is encountered. Does anyone...
  4. icu812

    Automating page interval

    I have a script. It works fine, except I have it running through CRON every 5 minutes and when it encounters a process that is down, I get a page every five minutes.I'd like CRON to run the script every five minutes but I want to get paged every hour when a problem is encountered. Does anyone...
  5. icu812

    Cron launched script

    I have a korn shell script that is launched by cron every 5 minutes. This script is checking ORACLE processes to make sure that they are up and running. When it finds one that is down, I am paged every 5 minutes until I can fix the condition that causing me to get paged. Can someone please give...
  6. icu812

    Cron launched script

    I have a korn shell script that is launched by cron every 5 minutes. This script is checking ORACLE processes to make sure that they are up and running. When it finds one that is down, I am paged every 5 minutes until I can fix the condition that causing me to get paged. Can someone please give...
  7. icu812

    Simple script but it's making me crazy

    Input script (oradbproc3.lis)looks like this: sp18cw:tnslsnr TRN::The DB Listener process on SP18 is down: sp18cw:FNDLIBR:appltrn:The TRN Concurrent Manager process on SP18 is down: Korn shell script looks like this: for line in `cat /bin/danka/oradbproc3.lis` do SERVER=`echo...
  8. icu812

    Simple script but it's making me crazy

    Input script (oradbproc3.lis)looks like this: sp18cw:tnslsnr TRN::The DB Listener process on SP18 is down: sp18cw:FNDLIBR:appltrn:The TRN Concurrent Manager process on SP18 is down: Korn shell script looks like this: for line in `cat /bin/danka/oradbproc3.lis` do SERVER=`echo...
  9. icu812

    monitoring script

    Am attempting to write a script that will monitor some oracle processes. I have a file that it read from that only contains the following two lines:(The filename is oradbproc2.lis). I am running the script from the SP control workstation using the dsh command. Can someone please help me...
  10. icu812

    monitoring script

    Am attempting to write a script that will monitor some oracle processes. I have a file that it read from that only contains the following two lines:(The filename is oradbproc2.lis). I am running the script from the SP control workstation using the dsh command. Can someone please help me...
  11. icu812

    df -k

    Can someone please tell me if there is a way to know,at a glance whether the output of a df -k is kilobytes, megabytes or gigabytes?????????? (I am always having to do the math). Thanks
  12. icu812

    monitoring SP switch

    I'd like to have a script that pings the css0 interface on all SP nodes. If they are all unpingable, I 'd like an e-mail message stating that the switch is in a problematic state. Can someone help me with some ideas? Thanks in advance, eveyone here is always most helpful.
  13. icu812

    script problem

    I have a script that looks like this: it works fine but I have it running every 15 minutes through cron and when my condition is met I get 4 pages an hour until it has been resolved. Can someone please assist me in getting this script to run every 15 minutes and only page me once???? Thanks ##...
  14. icu812

    script problem

    I have a script that looks something like this: It works fine except that I have cron running it every 15 minutes and when my condition is met I get 4 pages. Can someone please tell me how I can have cron run it every 15 minutes and get only one page???? Thank You ## This portion of the script...
  15. icu812

    grep

    I'd like to be able to search the first colon delimited field in a file that has the following lines in it(file name is nfs.lis): sp30:sp16:/stage:/stage sp30:sp13:/mksysb:/mksysb1 sp16:sp13:/mksysb:/mksysb For example: I want to grep sp16 nfs.lis and I want it to return just the...
  16. icu812

    grep

    I'd like to be able to search the first colon delimited field in a file that has the following lines in it(file name is nfs.lis): sp30:sp16:/stage:/stage sp30:sp13:/mksysb:/mksysb1 sp16:sp13:/mksysb:/mksysb For example: I want to grep sp16 nfs.lis and I want it to return just the...
  17. icu812

    NFS Script....help

    Been working on a script for several hours now. Am trying to NFS mount some filesystems coming off of several different hosts to a box after it is rebooted. Here is what my script looks like: #!/bin/ksh # for SERVER in `cat /bin/danka/nfs.lis|cut -f 1 -d :` do for MP in `cat...
  18. icu812

    NFS mounts

    I need to write a script that will NFS mount 5 filesystems onto a host machine(AIX4.3.3). Before it mounts them I need the script to check to see whether or not they are already mounted, if they are not then I need the script to go ahead and mount them. Does someone already have a script that...
  19. icu812

    NFS mounts

    I need to write a script that will NFS mount 5 filesystems onto a host machine(AIX4.3.3). Before it mounts them I need the script to check to see whether or not they are already mounted, if they are not then I need the script to go ahead and mount them. Does someone already have a script that...
  20. icu812

    checking errpt

    Does anyone have a script that checks erros in the errpt(AIX box) on a daily basis. I have approx. 32 AIX boxes and have been tasked with monitoring errpt on a weekly basis. Help! Thanks

Part and Inventory Search

Back
Top