Leser: 24
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
#!/usr/bin/perl -W use strict; use warnings; use IO::Handle; STDOUT -> autoflush (1); # sicherheitshalber statt $| = 1; use CGI; my $q = CGI -> new; if (my $pid = fork ()) { # Vater my $header = $q -> header; print <<HTML_TEIL; $header <html> <head> </head> <body> <p>Da und gut isss</p> </body> </html> HTML_TEIL exit (); # /Vater } else { # Sohn sleep 20; exit (); # /Sohn }
1 2 3 4 5 6
local $SIG{CHLD} = 'IGNORE'; # fork # child close STDOUT; close STDIN; close STDERR;
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
#!/usr/bin/perl -W use strict; use warnings; use IO::Handle; STDOUT -> autoflush (1); # sicherheitshalber statt $| = 1; use CGI; my $q = CGI -> new; local $SIG{CHLD} = 'IGNORE'; if (my $pid = fork ()) { # Mutter my $header = $q -> header; print <<HTML_TEIL; $header <html> <head> </head> <body> <p>Da und gut isss</p> </body> </html> HTML_TEIL exit (); # /Mutter } else { # Tochter close STDOUT; close STDIN; close STDERR; sleep 20; exit (); # /Tochter }
2010-05-31T16:56:02 biancaWas mache ich falsch?
2010-05-31T17:00:26 pqweiss nicht. bei mir funktionierts.
2010-05-31T17:04:40 bianca2010-05-31T17:00:26 pqweiss nicht. bei mir funktionierts.
Im Ernst?
QuoteDas heißt, Du startest das Script im Browser über Webserver, es kommt sofort die Ausgabe Gut iss und dann wartet der Browser auch nicht länger?
QuoteBei kommt im IE 20 Sekunden garkeine Ausgabe, Browser lädt und dann kommt die Meldung.
Im FF kommt zwar die Ausgabe sofort aber der Browser lädt noch 20 Sekunden, woraufhin sich natürlich nichts mehr tut.
Woran kann das liegen?
2010-05-31T17:10:26 pqweiss ich nicht. am webserver?
1
2
3
4
5
6
The exit() function does not always exit immediately. It calls
any defined "END" routines first, but these "END" routines may
not themselves abort the exit. Likewise any object destructors
that need to be called are called before the real exit. If this
is a problem, you can call "POSIX:_exit($status)" to avoid END
and destructor processing. See perlmod for details.
2010-05-31T17:24:32 biancaHab 2.2.8 drauf.
Für wie wahrscheinlich hälst Du es, dass es an dieser Apache Version liegt?
QuoteHab auch auf http://search.cpan.org/~gozer/mod_perl-1.30/lib/Ap... etwas gefunden
Quoteund in perldoc für exit steht auch noch das hier:
[...]
2010-05-31T17:29:45 pqach das script läuft unter mod_perl?
2010-05-31T17:36:42 biancaNö, nicht das ich wüßte. Würde ich doch in der httpd.conf sehen, oder?
2010-05-31T17:42:58 pqInwiefern ist dann
http://search.cpan.org/~gozer/mod_perl-1.30/lib/Ap... relevant?
2010-06-02T16:38:26 pqzumal man nach dem schliessen dann auch keine möglichkeit mehr hat, etwas auszugeben.
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
#!/usr/bin/perl -W use strict; use warnings; use IO::Handle; STDOUT -> autoflush (1); use CGI; my $zeit = time; print CGI -> new -> header . <<HTML_TEIL; <html> <head> </head> <body> <p>Bin da um $zeit mit PID $$</p> </body> </html> HTML_TEIL close STDOUT; # end pipe to webserver if (my $pid = fork ()) { # parent # PID of parent = $$ # PID of child = $pid open (my $fh,">test.parent.$$" . "_fork_to_$pid.txt"); print $fh "test"; # /parent } else { # child # $pid = 0 # PID of child = $$ sleep 10; open (my $fh,">test.child.$$.txt"); print $fh "test"; # /child }
2010-06-02T16:50:51 biancaVielleicht hat das was mit Windows zu tun.
2010-06-02T17:03:37 pqfork unter windows funktioniert komplett anders.
zum glück hab ich nicht weiter rumgerätselt. viel erfolg noch, vielleicht kann dir kristian ja dann bzgl. kaputtem forking unter windows weiterhelfen.
2010-06-02T17:16:29 kristianDeine Angaben sind wirklich nicht vollständig.
Nebst dem Betriebsystem gibt es beim Apache noch diverse Modelle des Betriebes / Tunings.
mpm-event
mpm-prefork
mpm-worker
usw.
2010-06-02T17:16:29 kristianDu hast auf der Dose wohl die 08/15-Standardinstallation.
2010-06-02T17:07:57 biancaDie Symptome waren auf Linux sowohl auf dem Produktivserver als auch in der Entwicklung des Providers identisch mit denen auf Windows.
QuoteNun aber das Problem: Lokal auf meinem Apache läuft das alles perfekt:
[...]
Online auf dem Produktivserver passiert bei der Variante 4 folgendes:
[...]
-> es tut sich 10 Sekunden garnichts
-> es erscheint die Ausgabe
2010-06-02T17:48:39 pqwenn das mit dem c...
2010-05-31T16:56:02 biancaVater/Sohn sowie Mutter/Tochter sind halt kürzer. Gibt ja kein Singular von Eltern.
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
#!/usr/bin/perl use strict; use warnings; use CGI; use utf8; my $base='../'; my $file=$base.'pid_file_%s.txt'; my $search=$base.'pid_file_*.txt'; my $sleep=5; my $cgi=CGI->new(); $cgi->header(-type=>"text/html",-charset=>"UTF-8"); my $name=$ENV{SCRIPT_NAME} || $0; my $action=$cgi->param('action') || 'list'; if($action eq 'start') { # KindProzess erzeuegn local $SIG{CHLD}='IGNORE'; my $pid=fork(); # undef => fork funktionierte nicht if(!defined($pid)) { printerror($cgi,'Konnte Fork nicht erzeugen!'); } # >0 => wir sind im Elternprozess elsif($pid!=0) { printhtml($cgi,"Prozess $pid erzeugt",<<"EOH"); PID:$pid<br> Aktualisierung alle $sleep Sekunden<br> <a href="$file">Zur Testseite</a><br> <a href="$name?action=status&pid=$pid">Status Anzeigen</a><br> <a href="$name">Zur Übersicht</a> EOH } # 0 => wir sind im Kindprozess else { runn_fork(sprintf($file,$$)); } } elsif($action eq 'stop') { # Kindprozess stoppen my $pid=$cgi->param('pid'); my $time=stop_process($cgi,sprintf($file,$pid),$pid); if($time>-1) { printhtml($cgi,"Prozess $pid Gestoppt",<<"EOH"); PID:$pid<br> TIME: $time SEC<br> <a href="$name">Zur Übersicht</a> EOH } } elsif($action eq 'status') { # Status eines bekannten Prozesses anzeigen my $pid=$cgi->param('pid'); print_status($cgi,$pid,sprintf($file,$pid)); } elsif($action eq 'list') { # Liste der überwachten Prozesse anzeigen print_list($cgi,glob($search)) } else { printerror($cgi,'Unkennte Aktion!'); } ######################################################################## ######################################################################## sub stop_process { my $cgi=shift; my $file=shift; my $pid=shift; my $time=0; if(-f $file) { my @data=eval{local(@ARGV)=($file); <>}; my ($t1,$t2)=(shift(@data),pop(@data)); ($t1)=$t1=~/\((\d+)\)/; ($t2)=$t2=~/\((\d+)\)/; kill(15,$pid); if(unlink($file)) { return 0 unless($t1 && $t2); return $t2-$t1; } else { printerror($cgi,"Kann $file nicht löschen! ($!)"); } } else { printerror($cgi,"Datei $file existiert nicht!"); } return -1; } # Im Kindprozess ausführen sub runn_fork { my $file=shift; close(STDIN); close(STDERR); close(STDOUT); # Signale Überwachen local $SIG{TERM}=sub{ # Programm beenden print2file($file,'SIGTERM'); exit(); }; local $SIG{KILL}=sub{ # Programm abbrechen print2file($file,'SIGKILL'); exit(); }; local $SIG{XCPU}=sub{ # Wegen ungenügender Prozssorleistung abbrechen print2file($file,'SIGXCPU'); exit(); }; local $SIG{XFSZ}=sub{ # Wegen Ungenügendem Speicherplatz (RAM/DISK)? abbrechen print2file($file,'SIGXFSZ'); exit(); }; # datei anlegen if(open(my $fh,'>',$file)) { close($fh); } print2file($file,'START') || exit; while(1) { #abbruch wenn die datei nicht mehr zu öffen ist oder nicht mehr existiert! print2file($file,'ALIVE') || exit; sleep(5); } } sub print2file { use Fcntl ':flock'; my $file=shift; my $cmd=shift || ''; if($file && -f $file && open(my $fh,'>>',$file)) { flock($fh, LOCK_EX); print $fh $cmd.": ".localtime()." (".time.")\n"; close($fh); return 1; } return 0; } ######################################################################## sub print_list { my $cgi=shift; my $list="\n"; my $name=$ENV{SCRIPT_NAME} || $0; for my $file (@_) { my ($pid)=$file=~/(\d+)/; my $status=psstatus($pid); if($status eq 'STOPPED') { my $time=stop_process($cgi,$file,$pid); return if($time == -1); $list.=qq# <li>$status: $pid TIME: $time SEC</li>\n#; } else { $list.=qq# <li>$status: <a href="$file">$file</a> - <a href="$name?action=stop&pid=$pid">PROZESS STOPPEN</a> - <a href="$name?action=status&pid=$pid">PROZESS STATUS</a></li>\n#; } } my $ps=pslist(); printhtml($cgi,'Fork List',<<EOH); <a href="$name?action=start">Neuen Prozess erzeugen</a> <ul>$list</ul> <hr> <pre>$ps</pre> <br><a href="$name">weiter</a> EOH } ######################################################################## sub print_status { my $cgi=shift; my $pid=shift; my $file=shift; my $data=eval{local ($/,@ARGV)=(undef,$file); <>} || ''; my $status=psstatus($pid); my $name=$ENV{SCRIPT_NAME} || $0; printhtml($cgi,'Fork Status', <<EOH); PID:$pid<br> STATUS:$status<br> <pre>$data</pre> <a href="$name">weiter</a> EOH } ######################################################################## ######################################################################## ######################################################################## sub printerror { my $cgi=shift; my $err=''; my $name=$ENV{SCRIPT_NAME} || $0; $err.="<h3>MESSAGE</h3>\n<pre>\n$_\n</pre>\n" for(@_); printhtml($cgi,'ERROR',$err.qq#<br><a href="$name">weiter</a>#); } ######################################################################## sub printhtml { my $cgi=shift; my $title=shift || ''; my $body=shift || ''; my $unique='X'; $unique.=chr(int(65+rand(25))) while(index($unique,$body)>-1); my %pre; my $cnt=0; while($body=~m!<pre>(.+?)</pre>!sgc) { my $val=$1; my $symbol=sprintf('%s%08u',$unique,$cnt); $pre{$symbol}=$val; $body=~s!\Q<pre>$val</pre>!$symbol!gs; $cnt++; } $body=~s/(^|\n)/$1 /gs; $body=~s!\s*($unique\d{8})!\n <pre>$pre{$1}</pre>!g; if($cgi) { print $cgi->header(); } else { print "Content-Type: text/html\r\n\r\n"; } print <<"EOHTML"; <html> <head><title>$title</title></head> <body> <center><h1>$title</h1></center> $body </body> </html> EOHTML } ######################################################################## ######################################################################## ######################################################################## sub pslist { my ($name)=($ENV{SCRIPT_NAME} || $0)=~m!/([^/]+)$!; my $cmd_f='/bin/ps'; my $cmd_o='aux'; if(-f $cmd_f) { my $cmd="$cmd_f $cmd_o"; my @list=`$cmd`; if(@list) { my $ret=shift(@list); $ret.=join'',grep{/\Q$name/}@list; return $ret; } else {return qq(CAN'T CALL "$cmd" ($@))} } else { return qq(CAN'T find "$cmd_f"); } } ######################################################################## sub psstatus { my $pid=shift; my ($name)=($ENV{SCRIPT_NAME} || $0)=~m!/([^/]+)$!; if(-d "/proc") { if(-d "/proc/$pid") { my $cmdline=eval{local($/,@ARGV)=(undef,"/proc/$pid/cmdline"); <>}; return 'RUNNING' if($cmdline=~/\Q$name/); } return 'STOPPED'; } else { my $ret=kill(0,$pid); if(defined($ret)) { my $data=eval{local($/,@ARGV)=(undef,sprintf($file,$pid)); <>}; return 'RUNNING' if($ret && $data!~/SIG/); return 'STOPPED' if(!$ret && $data=~/SIG/); return 'POSSIBLE RUNNING (can\'t verify)' if($data!~/SIG/); } } return 'STATUS UNKOWN'; }