Binary Installation mysql5.6.39 initialization times error is as follows:
[[email protected] scripts]# ./mysql_install_db --datadir=/data/mysql/data --basedir=/usr/local/mysql --user=mysql --explicit_defaults_for_timestampInstalling MySQL system tables.../usr/local/mysql/bin/mysqld: error while loading shared libraries: libnuma.so.1: cannot open shared object file: No such file or directory
The library file is not found, so find the installation package that is missing the library file
[[email protected] tmp]# yum provides libnuma.so.1 Loaded plugins: fastestmirrorLoading mirror speeds from cached hostfile * base: mirrors.cn99.com * extras: mirrors.cn99.com * updates: mirrors.163.comnumactl-2.0.9-2.el6.i686 : Library for tuning for Non Uniform Memory Access machinesRepo : baseMatched from:Other : libnuma.so.1
Install this package with Yum
yum install numactl* -y
Re-initializing MySQL success
Binary installation mysql5.6.39 error libnuma.so.1 library file not found