mysql编译安装过程内存不足

mysql编译安装过程,执行make命令时报错:

c++: internal compiler error: Killed (program cc1plus)
Please submit a full bug report,
with preprocessed source if appropriate.
See http://bugzilla.redhat.com/bugzilla for instructions.
make[2]: * [sql/CMakeFiles/sql.dir/item_geofunc.cc.o] Error 4
make[1]: * [sql/CMakeFiles/sql.dir/all] Error 2
make: * [all] Error 2

原因解析:

内存不足,mysql5.9以上的版本,编译安装需要1G内存,而我的云主机刚好1G内存。

解决方案

内存不足当然加内存,加内存太贵?那就把硬盘当内存来用把

$dd if=/dev/zero of=/data/swap_add bs=1M count=2048
$mkswap /data/swap_add
$swapon /data/swap_add
$swapon -s

你可能感兴趣的:(linux系统运维)