主机内存过小安装 mysql 失败

757 查看

(同样的phalcon 编译安装也遇到过)

解决办法就是新增 SWAP 分区

sudo fallocate -l 1G /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile

参考 Why did installation of MySQL 5.6 on Ubuntu 14.04 fail?