Xampp 安装时自动终止?

Xampp auto killed on installation?

我正在尝试在 CentOS 6.4 上安装 Xampp,但这不允许我继续!

这是输出:

[root@imperius ~]# ./xampp-linux-x64-5.6.3-0-installer.run
----------------------------------------------------------------------------
Welcome to the XAMPP Setup Wizard.

----------------------------------------------------------------------------
Select the components you want to install; clear the components you do not want
to install. Click Next when you are ready to continue.

XAMPP Core Files : Y (Cannot be edited)

XAMPP Developer Files [Y/n] :y

Is the selection above correct? [Y/n]: y

----------------------------------------------------------------------------
Installation Directory

XAMPP will be installed to /opt/lampp
Press [Enter] to continue:

----------------------------------------------------------------------------
Setup is now ready to begin installing XAMPP on your computer.

Do you want to continue? [Y/n]: y

----------------------------------------------------------------------------
Please wait while Setup installs XAMPP on your computer.

 Installing
 0% ______________ 50% ______________ 100%
 ####Killed
[root@imperius ~]#

显然命令 sudo /opt/lampp/lampp 不起作用,因为它没有完成安装。

你试过了吗:

Sudo /opt/lampp/lampp start

检查您的安装进程是否被 Out-Of-Memory Killer 杀死:

grep -i kill /var/log/messages*

在我向 linux 添加一个 SWAP 文件后,我的问题终于消失了。

我遇到了同样的问题,我们通过将内存从 512M 更新为 1G 解决了这个问题。

至少在我的情况下,这只是缺乏记忆。 512MB 似乎不足以安装 XAMMP。我设法完成了将 RAM 升级到 1GB 的安装。

我也遇到了同样的问题。我觉得还是不够 swap space.You 可以这样操作:

    1. sudo dd if=/dev/zero of=swapfile bs=1024 count=2000000
    2. sudo mkswap -f  swapfile
    3. sudo swapon swapfile

我现在测试了这个。有效。

  1. sudo dd if=/dev/zero of=swapfile bs=1024 count=2000000
  2. 须藤 mkswap -f 交换文件
  3. sudo swapon 交换文件