Reputation: 51
I'm trying to install Xampp on CentOS 6.4 but this doesn't let me continue!
This is the output:
[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 ~]#
Obviously the command sudo /opt/lampp/lampp
doesn't work because it doesn't complete the installation.
Upvotes: 3
Views: 5166
Reputation: 87
I tested this now. It works.
Upvotes: 0
Reputation: 121
I have also encountered the same problem . i think it is not enough swap space.You can do this as follows:
1. sudo dd if=/dev/zero of=swapfile bs=1024 count=2000000
2. sudo mkswap -f swapfile
3. sudo swapon swapfile
Upvotes: 12
Reputation: 51
In my case, at least, it was just a lack of memory. 512MB seems not enough to install XAMMP. I managed to finish the installation upgrading RAM to 1GB.
Upvotes: 3
Reputation: 21
I had the same issue and we solved it by updating the memory from 512M to 1G.
Upvotes: 2
Reputation: 192
Check if your installation process was killed by Out-Of-Memory Killer:
grep -i kill /var/log/messages*
My issue finally gone away after I added a SWAP file to my linux.
Upvotes: 1