MySql教程

ubuntu20.04 安装mysql8.0 报错

本文主要是介绍ubuntu20.04 安装mysql8.0 报错,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

报错提示如下:

g++: fatal error: Killed signal terminated program cc1plus
compilation terminated.
make[2]: *** [sql/CMakeFiles/sql_gis.dir/build.make:414: sql/CMakeFiles/sql_gis. dir/gis/touches.cc.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:10945: sql/CMakeFiles/sql_gis.dir/all] Error 2
make: *** [Makefile:163: all] Error 2

 

解决方案:

 

查了很多资料,最后发现主要原因是内存不足,g++编译时需要大量内存, 临时使用交换分区来解决吧

sudo dd if=/dev/zero of=/swapfile bs=64M count=16

sudo mkswap /swapfile

sudo swapon /swapfile

After compiling, you may wish to

Code:

sudo swapoff /swapfile

sudo rm /swapfile

 

这篇关于ubuntu20.04 安装mysql8.0 报错的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!