illegal instruction 4

2011-07-07 Thread MK
I have a mod_perl based module running a service on an openVZ slice. It was working fine for a few weeks, but when I went to use it today I get delivered an empty page and in the apache error.log: child exit signal Illegal instruction (4) Which AFAIK is a very strange thing (SIGILL); actual perl

Re: illegal instruction 4

2011-07-07 Thread MK
On Thu, 7 Jul 2011 10:33:59 -0400 MK m...@cognitivedissonance.ca wrote: Same thing. Ie, suddenly perl modules are working. I did not compile apache or mod_perl myself. Sorry, that should read suddenly perl modules are NOT working, hopefully that was not too confusing ;) -- Enthusiasm is not

Re: illegal instruction 4

2011-07-07 Thread Ben Noordhuis
instruction (4) Which AFAIK is a very strange thing (SIGILL); actual perl errors are usually explicit, and passed on from the interpreter. To make sure the problem wasn't in my code, I replaced the module with a one liner: sub handler {       return SERVER_ERROR; } Same thing.  Ie, suddenly