22 Nov 2012 at 17:11 #1 Deleted member 77746 Deleted member 77746 Permabanned Joined 9 Aug 2008 Posts 35,711 Which version of Linux is best suitable for a web server. Any you guys running Linux for Web HTTP systems?
Which version of Linux is best suitable for a web server. Any you guys running Linux for Web HTTP systems?
22 Nov 2012 at 17:30 #4 Deleted member 77746 Deleted member 77746 Permabanned OP Joined 9 Aug 2008 Posts 35,711 Is CentOS OK with MYSQL/Apache/PHP ?
22 Nov 2012 at 17:35 #6 Deleted member 77746 Deleted member 77746 Permabanned OP Joined 9 Aug 2008 Posts 35,711 Great news, I will have a play around with CentOS tonight. That's what I like to hear. Last edited: 23 Nov 2012
24 Nov 2012 at 20:20 #7 Deleted member 77746 Deleted member 77746 Permabanned OP Joined 9 Aug 2008 Posts 35,711 After giving some Os's a try I decided to go with Ubuntu 12.10 Server Edition 64 Bit. I am running PHP - MySQL - PhpMyAdmin - Webmin 1.610 and this thing is very fast! I can do SSH via Webmin remotely via Java. There is no gui with this edition just command line and it's fantastic. "Backup (with root)" Code: # sudo su # cd / # tar cvpzf backup.tgz --exclude=/proc --exclude=/lost+found --exclude=/backup.tgz --exclude=/mnt --exclude=/sys / or # tar cvpjf backup.tar.bz2 --exclude=/proc --exclude=/lost+found --exclude=/backup.tar.bz2 --exclude=/mnt --exclude=/sys / "Restore (with root)" Code: # sudo su # cd / # tar xvpfz backup.tgz -C / or # tar xvpfj backup.tar.bz2 -C / Last edited: 25 Nov 2012
After giving some Os's a try I decided to go with Ubuntu 12.10 Server Edition 64 Bit. I am running PHP - MySQL - PhpMyAdmin - Webmin 1.610 and this thing is very fast! I can do SSH via Webmin remotely via Java. There is no gui with this edition just command line and it's fantastic. "Backup (with root)" Code: # sudo su # cd / # tar cvpzf backup.tgz --exclude=/proc --exclude=/lost+found --exclude=/backup.tgz --exclude=/mnt --exclude=/sys / or # tar cvpjf backup.tar.bz2 --exclude=/proc --exclude=/lost+found --exclude=/backup.tar.bz2 --exclude=/mnt --exclude=/sys / "Restore (with root)" Code: # sudo su # cd / # tar xvpfz backup.tgz -C / or # tar xvpfj backup.tar.bz2 -C /