MySQL repeatedly dies
I've had several people run through the configs to see if I had something wrong, no such luck. Also, my server is not hit very hard at all. It's mainly used for some backend work in holding information for the generation of static pages.
Has anyone else had a similiar problem or any ideas?
I'm running 4.0.16-standard and I've had the same problem with 4.0.15-standard.
2 Replies
You might want to try something like this for low-memory conditions:
mysqld_safe -O key_buffer=8M -O sort_buffer=512k &
Maybe mysql tries to lock physical memory for it's buffers?
-Chris