Being a Windows developer I'm currently working on my own project using LAMP. I understand what I need to know of PHP and MySQL, but Linux looks huge and it's not clear where to start and what is enough given my goals.
And my goals are to grasp general concepts, being able to deploy the project to a hosting provider and to be able to monitor the site's performance in order to spot problems, load issues, etc.
I know, the best solution is to get a Linux admin to do that but before I can do that I need to do it myself.
|
12
|
|
|||
|
|
|
|
80% of your problems will be permissions. Windows does them differently; if you login as root (or with root-like privs) you can bypass permissions. Apache can't and won't.
Of the remaining problems, 80% will be PATH issues. PHP doesn't have as big a PATH issue as Java and Python, but they all use a PATH setting to find components and libraries. You'll get those wrong regularly. Windows has a PATH, but it also has a registry, making things either super easy or super secret. Unix keeps no secrets.
Of the remaining problems, 80% will be database related. After sorting out database permissions, you'll still have to get connected, and the "named pipe" vs. "localhost" stuff will be wrong in obscure, confusing ways. MySQL is very forgiving, but you'll make some mistakes here.
Of the remaining problems, 80% will be Apache configs. Apache is really simple, but has a million options. There's four ways to do everything, and you'll always try two that don't work at all, and settle for the third which will be icky. The fourth, which is much simpler, will never occur to you.
Of the remaining problems, 80% will be application use of the file system. If you try to open, read or write local files, you'll find that (a) permissions aren't correct on the directory you're trying to use [see above] and (b) the Unix file paths are different. Not a lot different, but enough different that something will break in an obscure way.
Of the remaining problems, 80% will be subprocess creation. Windows does this differently. One of the most important things in Unix is to remember that your subprocess is your child and you must actually wait for it to finish so the OS can clean up. If you think of a subprocess as a parallel "fire-and-forget" thing, you'll have zombie processes and be forced to do periodic reboots.
The remaining problems will be trivial application logic, but because of the platform differences, you'll blame Unix before you track down the bug in the PHP application.
|
|||
|
|
|
Off the top of my head you'll need to:
These are only the basics, the next step is to realize when you have a problem and know where you can go to find out more information about it. Even with all this it is only scratching the surface and many things may not make sense, it is a good start though. |
||
|
|
|
|
I had been doing PHP/MySQL on windows and mac for a few years when I was asked to port a fairly complex intranet site from IIS/Windows to Apache/Linux. I had zero experience with Linux and blank server with no OS whatsoever. In about two days myself and another windows admin with almost no Linux experience had a copy of CentOS up and running PHP/MySQL/Apache as well as the intranet. The lessons I learned: "yum" is your best friend when installing your services, "sudo" is your best friend when configuring your services (permissions can be a hassle), and almost every other problem was a result of case-sensitivity or slash-backslash issues. It turns out we did botch the security a bit on the FTP access but this was behind a firewall (dmz) so there was no damage done before they had a real security audit and tightened it up. Final answer: if you are willing to roll up the sleeves and get your command line dirty getting a basic website up and running on a Linux box is not a huge task until you get to security which (IMO) is better left to someone who is an expert in that area. |
||
|
|
|
|
You might consider, based on your introduction, a WAMP option (Windows Apache MySQL Python/Perl/PHP). Learning Linux isn't hard, but it's certainly not a short task, either. There're a lot of sysadmin tasks that carry over platform-to-platform, but the real answer to your question is to be come at least a hobbyist Linux admin, and then go from there. |
||
|
|
I would learn vi and bash. vi is lightweight and tends to be installed everywhere. It can be a big pain until you get used to it, but if you want to know linux it tends to pretty much always be available, and you'll need a text editor a lot. I'd also learn bash, because it tends to be the default shell. vfilby's suggestions are good. Definitely learn the package manager for whichever linux you choose. I would spend some time with Apache, because it's a bit of a monster just because it has a LOT of configuration options. I try to keep my linux testbed off the public internet because I know I'm not a good enough sysadmin to keep it secure. At least put it behind a firewall. It's pretty easy to find iptables scripts to block everything coming in, so you might want to check out iptables for some good firewalling/address/port manipulation. Good luck! |
||
|
|
|
First you should decide if you are going to be managing the system using GUI tools (gnome or KDE) or if you will be accessing mainly from SSH using a command line. (This usually is a decision based on where the server is located). Learning a little of both GUI and CLI goes a long way. CLI is super powerful, much more than the Command Prompt on Windows (I know about PowerShell...) From a GUI perspective, I typically have the terminal (CLI) running anyway, from a Debian/Ubuntu perspective:
There is a whole lot of information here and a large variety of options to choose from. I would recommend going with a Linux distro that has a friendly community (i.e. Ubuntu, CentOS (debranded/free RHEL), or RHEL (you pay them to help you). There is definitely going to be a lot of value for you to play around with a distribution over a weekend on a virtual machine or spare machine at home/work. The Linux community is HUGE and you will find excellent support if you look for it. |
||
|
|
|
Off the top of my head you'll need to:
These are only the basics, the next step is to realize when you have a problem and know where you can go to find out more information about it. Even with all this it is only scratching the surface and many things may not make sense, it is a good start though. |
||
|
|
|
|
You should
|
||
|
|
|
|
Mostly, you should know how to use Linux(as in daily use). Then, you should also know how to deal with command lines. Finally, you must learn LAMP-specific stuff. You ought to know and apply some basic(or not-so-basic) security guidelines. |
||
|
|
|
|
Frankly, very little if the websites you're going to be working on are either very small or very large. Very small means shared hosting and you don't need to sweat it, very large means you'll probably have a sysadmin on board to handle it. |
||
|
|
|
|
|
||
|
|
|
|
Scrounge up an old box on Craigslist and install Gentoo Linux on it. That...experience...should give you a lot of feel for Linux and how it thinks. Also, in the case vi vs. emacs, I rule emacs. (Though you'll want to start with pico/nano, because there's no sense in learning a full-featured editor while learning a new OS). |
||
|
|
