Every LAMP or XAMPP writeup or tutorial I see says "Not for production use", so what do I use for production?
|
you use apache, php and mysql installed as they should be for production. xampp is all those things in one package with basically no set up security .. root passwords are empty .. users are well known .. but the components are the same as the ones you would use if you downloaded them each .. |
|||
|
|
|
The XAMPP philosophy says:
So it’s primarily designated as a development environment and not as a production environment. |
|||||
|
|
Roll your own combination of Apache, a DB and a scripting language, that meets your needs. This is what hosting companies do for a living. You may find that an enterprise Linux distribution is enough for your needs. |
|||
|
|
|
Given the right installation options, you can use them as a starting point for a production server. But there are some holes to fill in, mainly wrt security. The disclaimers you refer to are (wisely) to make sure you are wary and suspicious of what you start with (and also make sure no one can claim they supplied you with something dangerous without letting you know, so don't blame them if Bad Things happen.) It's like selling you a car without seatbelts. But what you learn, and the solutions you develop, are generally fully compatible with a "real" server. |
|||
|
|
|
So going with something like CentOS and installing apache web server, PHP and MySql from their repositories would be a safe first step? And then I guess I'd need to do some reading into locking down and holes that may be in there? |
|||
|
|
|
XAMPP installation is easy as compared to LAMP. If you are on development server it makes no difference, but if you are on production server than it is good to do from basic instead of relying on 3rd party and you will get exact services you want on your production server, no extra services which can lower down your production server performance. And try to keep same setup on development and production server, it will make sure that if application is running on development server will also run on production without doing any extra settings. For more installation details you can read following blog: http://codebucket.co.in/lamp-installation/ |
|||
|
|
protected by Community♦ Nov 16 '11 at 2:11
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.