Xampp 在安装时自动杀死?

Win*_*ous 2 php xampp 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 ~]#
Run Code Online (Sandbox Code Playgroud)

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

小智 9

我也遇到了同样的问题。我认为交换空间不够。您可以按以下方式执行此操作吗?

    1. sudo dd if=/dev/zero of=swapfile bs=1024 count=2000000
    2. sudo mkswap -f  swapfile
    3. sudo swapon swapfile
Run Code Online (Sandbox Code Playgroud)