Server OS Tips

Getting the right hardware and network setup for your server is difficult enough. Choosing the right operating system, configuring it, and then maintaining it can be overwhelming. Here are a few tips to get you through the process.
1. If you are on a limited budget, you should definitely consider a free and open source operating system like Linux, FreeBSD, or OpenSolaris.
2. You can support your own server if you have the technical knowledge. Otherwise, you should get a commercial operating system (open source or proprietary) that comes with support.
3. Make sure the OS you choose is one you can live with for a long time. It is never a good idea to change the server OS once the server is live.
4. Think long term. You want an OS that will be stable, updated, and supported for years to come.
5. If you are trying a new OS like Linux for the first time, test it using a virtual machine like Virtualbox. You can learn a lot from it before ever even installing it on your server.
6. Make sure the software and web applications you want to run will be compatible with the server operating system you choose. You do not want to find out that they are not compatible after the fact.
7. Paying more will not necessarily get you better quality. Weigh the pros and cons of features, security, and stability to make your decision.
Photo Source: Flickr
Tag: freebsd, linux, open source, opensolaris, operating systems, os
Installing software on an OpenSolaris server

Continuing with our tour of server operating systems, today we will take a look at Sun Microsystems’ OpenSolaris, the free and open source version of the popular Unix-based Solaris OS. Those who experience with other Unix or Linux servers should find much of OpenSolaris familiar. Nevertheless, there are some key differences.
One of the first things you will want to do with a new OpenSolaris dedicated server would be to install software. The command for installing packages is “pkg”. For example, if you wanted to install mysql, you would type from the command line:
pfexec pkg install SUNWmysql
To install the complete PHP, MySQL, and Apache stack, install the meta package called “amp”.
pfexec pkg install amp
The same command “pkg install” can be used for upgrading packages, and it will automatically upgrade any of the packages dependencies as well. For more information about installing packages in OpenSolaris, see the Sun website.
Tag: apache, install, mysql, opensolaris, packages, php, sun