Tilted Forum Project Discussion Community  

Go Back   Tilted Forum Project Discussion Community > Interests > Tilted Technology


 
 
LinkBack Thread Tools
Old 11-22-2004, 06:05 PM   #1 (permalink)
Insane
 
Location: Austin, TX
cronjob on my server acting weird

I set up a cronjob to automagically record Futurized Radio every monday on www.protonradio.com. Here's the line in my crontab:

55 19 * * mon cd "/tool/storage/MP3s/Electronica/Breaks/Futurized Radio" && /tool/box/bin/streamripper http://64.236.34.196:80/stream/1041 -s -l 8400 >/dev/null 2>&1 &


It works quite well, except that at 7:55 every monday, *TWO* of these jobs spawn in rapid-fire succession (so fast, in fact, that the PIDs look like this:

PIDn /bin/sh #1
PIDn+1 /bin/sh #2
PIDn+2 streamripper #1
PIDn+3 streamripper #2

I've already checked, double-checked, and triple-checked that I don't have any other crontabs set up. Besides, both of the streamripper processes run under my user id. The only thing I can think of is that I've somehow botched the timing portion of the crontab, causing cron to think it's supposed to run that command twice (once for it being monday, and again for it being 7:55, for example). It also might be that I'm backgrounding the process...

Anybody had cron do weird stuff like this? Any suggestions?

Thanks!

Last edited by skaven; 11-22-2004 at 06:07 PM..
skaven is offline  
Old 11-22-2004, 07:07 PM   #2 (permalink)
Professional Loafer
 
bendsley's Avatar
 
Location: texas
For those who don't know...
The 'Cron' Command

The cron command starts a process that executes commands at specified dates and times. Regularly scheduled commands can be specified according to instructions found in the crontab files in the directory /var/spool/cron/crontabs. Users can submit their own crontab files via the crontab command.

The 'Crontab' Command

Crontab copies the specified file or standard input if no file is specified, into a directory that holds all users' crontabs.

SYNOPSIS:

* crontab [file]
* crontab -e [-u username]
* crontab -r [-u username]
* crontab -l [-u username]

The -e option edits a copy of the current users' crontab file or creates an empty file to edit if crontab does not exist.

The-r option removes a user's crontab from the crontab directory.

The -l options lists the crontab file for the invoking user.

Setting up a Crontab job

A crontab file consists of lines of six fields each.The fields are separated by spaces or tabs. The first five are integers that specify the following:

1. minute (0-59),
2. hour (0-23),
3. day of the month (1-31),
4. month of the year (1-12),
5. day of the week (0-6 with 0=Sunday).

Each of these patterns may be either an asterisk (meaning all valid values) or a list of elements separated by commas. An element is either a number or two numbers separated by a minus sign ( meaning an inclusive range). Notice the time is in 24 hour format, 0 is midnight and 13 is one in the afternoon.

The sixth field of a line in a crontab file is a string to be executed by the shell at the specified times by the first fife fields. A percent character in this field (unless escaped by \) is translated to a newline character. Only the first line (up to a % or end of line) of the command field is executed by the shell. The other lines are made available to the command as standard input.

Any line beginning with a # is a comment and is ignored.

Example

To illustrate, 0 0 1,15 1 would run a command on the first and fifteenth of each month, as well as on every Monday at exactly midnight. To specify days by only one field, the other field should be set to *. The entry, 0 23 * * 1 would run a command only on Mondays at eleven PM.

A minute specification of 0,30 would indicate the job is to be run on the hour and half hour. Likewise, a day of the month entry of 1,15 would initiate execution on the first and fifteenth of the month.

Make sure you include an explicit path to your programs or scripts that you want to run by crontab. Let's assume we want to execute a Perl program, autoclose.cgi, every day at midnight. Additionally assume the full path to the script is /home/www/yourdirectory/cgi-bin. The full crontab command would be: 0 0 * * * /home/www/yourdirectory/cgi-bin/autoclose.cgi
__________________
"You hear the one about the fella who died, went to the pearly gates? St. Peter let him in. Sees a guy in a suit making a closing argument. Says, "Who's that?" St. Peter says, "Oh, that's God. Thinks he's Denny Crane."
bendsley is offline  
Old 11-23-2004, 04:33 AM   #3 (permalink)
In Your Dreams
 
Latch's Avatar
 
Location: City of Lights
I've never used the word "mon" in my crontabs, I always use the numbers (Monday's number is 1).

Also, have you copied that command and run it straight from the command line to see if it acts as you expect it to?
Latch is offline  
Old 11-24-2004, 09:19 AM   #4 (permalink)
Insane
 
Location: Austin, TX
Quote:
Originally Posted by Latch
I've never used the word "mon" in my crontabs, I always use the numbers (Monday's number is 1).
Yeah the manpage shows examples with 'mon', but it wouldn't be the first time that a manpage had examples not supported by the program in question. I changed the 'mon' to '1' and I guess we'll see what happens.

Quote:
Originally Posted by Latch
Also, have you copied that command and run it straight from the command line to see if it acts as you expect it to?
Yep, it works like a champ from the command line...
skaven is offline  
 

Tags
acting, cronjob, server, weird

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -8. The time now is 03:52 PM.

Tilted Forum Project

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0 PL2
© 2002-2012 Tilted Forum Project

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360