22 Nov 2012 at 17:11 #1 Deleted member 77746 Deleted member 77746 Permabanned Joined 9 Aug 2008 Posts 35,725 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:12 #2 SMN SMN Soldato Joined 2 Nov 2008 Posts 2,503 Location The ether Any really. I am running RHEL 6.3 with Apache, but thats just me. CentOS with Apache will do a good job, just remember about SE Linux and iptables
Any really. I am running RHEL 6.3 with Apache, but thats just me. CentOS with Apache will do a good job, just remember about SE Linux and iptables
22 Nov 2012 at 17:21 #3 celliott celliott Soldato Joined 21 Jun 2004 Posts 2,790 Location Berkshire CentOS
22 Nov 2012 at 17:30 #4 Deleted member 77746 Deleted member 77746 Permabanned OP Joined 9 Aug 2008 Posts 35,725 Is CentOS OK with MYSQL/Apache/PHP ?
22 Nov 2012 at 17:32 #5 dodgem dodgem Associate Joined 14 Jan 2004 Posts 1,518 Location Wiltshire Yup - I use CentOS for anything server related, and it is more than happy running as a LAMP stack.
22 Nov 2012 at 17:35 #6 Deleted member 77746 Deleted member 77746 Permabanned OP Joined 9 Aug 2008 Posts 35,725 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,725 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 /