Home  >  Article  >  php教程  >  virtual memory exhausted: Cannot allocate memory

virtual memory exhausted: Cannot allocate memory

WBOY
WBOYOriginal
2016-09-11 11:19:401250browse

Server, 1G memory Alibaba Cloud server, it should be enough to compile things, and install related content without any problem, but after compiling for a while, I encountered the problem of virtual memory exhausted: Cannot allocate memory.

Solution

This problem occurs because the server does not have enough memory, causing the compilation to fail.

The Alibaba Cloud server you purchased does not allocate virtual memory to you, so you can solve the problem by increasing the virtual memory yourself:

<span class="widget-clipboard"><code class="language-bash">dd <span class="hljs-keyword">if=/dev/zero <span class="hljs-keyword">of=/swap bs=<span class="hljs-number">1024 count=<span class="hljs-number">1M

mkswap /swap

swapon /swap

echo <span class="hljs-string">"/swap  swap  swap  sw  0  0" >> /etc/fstab</span></span></span></span></span></code></span>
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn