Posts

Showing posts with the label LAMP

Learning Zabbix

What is Zabbix? Zabbix is a network management system created by Alexei Vladishev. It is designed to monitor and track the status of various network services, servers, and other network hardware. (Courtesy Wikipedia). I wanted to learn Zabbix as it is a very important tool to monitor servers and hence decided to install it and practice. To install and use Zabbix you must first install LAMP on your machine. I followed the following steps to install Zabbix on my machine. Install the server: sudo apt-get install zabbix-server-mysql Install the agent   sudo apt-get install zabbix-agent Install the front end   sudo apt-get install zabbix-frontend-php Browse to http://localhost/zabbix Login as admin with a password of zabbix Change your password immediately by clicking on the profile link to the top right and clicking the Change Password button. Follow the Zabbix QuickStart Guide .

Installing LAMP in Ubuntu

Image
LAMP = Linux, Apache, MySQL, PHP (at times also Perl 7 Python). LAMP is the most preferred environment for creating web applications. With increasing popularity of Linux operating systems this environment is widely being chosen for creating amazing web applications. Installing LAMP on your computer or server is very simple. I use Ubuntu Linux 10.10 and hence this post is about installing LAMP on a Ubuntu machine. But this remains the same for almost all versions of Linux. Prerequisites: Linux desktop or server version.  Process of installing LAMP: # sudo apt-get install apache2 # sudo apt-get install php5-mysql # sudo apt-get install mysql-server # sudo apt-get install phpmyadmin # sudo apt-get install libapache2-mod-auth-mysql # sudo /etc/init.d/apache2 restart Testing: Open a browser and type http://localhost in the address bar. You should be getting a page similar to the below displayed image. Done!