![]() |
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| High Level Programming Post questions about C, C++, Java, SQL, and other programming languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| cron job starts new cron proccess | ron76 | SUN Solaris | 3 | 05-12-2008 02:07 AM |
| AIX and cron logs filtering ?: /etc/cronlog.conf, /var/adm/cron/log | Keith Johnson | AIX | 0 | 01-09-2008 08:32 PM |
| AIX - Cant ping | Netghost | AIX | 1 | 10-03-2006 07:38 PM |
| ping | csaunders | AIX | 1 | 04-24-2005 06:54 PM |
| ping -t | jaber87 | Shell Programming and Scripting | 8 | 04-17-2004 01:58 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
ping from cron
Hello
I wrote a shell script to poll network. It works fine from command line, but doesn't want to work from cron. To clarify the problem, I wrote simple test file (test.ksh): ping -c1 -q 172.27.38.2 > /path/res.log when I do: >ksh test.ksh it works fine, and res.log populated with ping info. but when I'm calling it from cron: 29 15 * * * ksh /path/test.ksh it creates res.log with 0 size and that's it. Why doesn't it work from cron? Thanks, Vlad |
|
|||||
|
This is how we ping other boxes to ensure their up and running. Nb: This is run on a SCO Unix box. Script: Code:
# more /usr/users/operator/check_rcmd if [ `rcmd $1 hostname | grep someweb.com` ] then echo OK else mailx -s "Unable to access SomeWeb server $1" ops@somedomain.com <<END `hostname` cannot perform remote commands on $1 This may effect the ability to do bookings on $1 Follow TVL escalation procedure to resolve END fi # From Cron: Code:
# Check rcmd is availble. Test for situation where corruption of the # authorisation database was preventing remote access 10,40 * * * * /usr/users/operator/check_rcmd 168.153.251.80 > /dev/null 2>&1 Hope that helps some.
|
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|