(Posting this in case others have the same problem.)
The error message was cryptic:
I tried running mysqld_safe -v, but that just gave
Finally, I tried mysqld-debug, which was more helpful:
It turns out libnuma is part of numactl, so
fixed the problem and now mysqld starts.
The error message was cryptic:
Code:
Starting MySQL. ERROR! The server quit without updating PID file
I tried running mysqld_safe -v, but that just gave
Code:
mysqld from pid file ended
Finally, I tried mysqld-debug, which was more helpful:
Code:
error while loading shared libraries: libnuma.so.1: cannot open shared object file: No such file or directory
It turns out libnuma is part of numactl, so
Code:
yum install numactl
Last edited: