satishgaudo.com

Understanding technology

Archive for the 'Uncategorized' Category

Ganglia : monitoring framework

Ganglia is a monitoring framework for clusters of servers. It records many statistics and can record custom defined ones too. It works in a distributed manner, with each machine you wish to collect statistics for running the Ganglia monitor deamon, gmond. Each monitoring deamon’s statistics are collected by a metadata daemon, gmetad, running on either [...]

30 July 2010 at 16:37 - Comments

Tuning LAMP systems, Part 2: Optimizing Apache and PHP

Here is an link from digg.com, Tuning LAMP systems, Part 2: Optimizing Apache and PHP Tuning LAMP systems, Part 2: Optimizing Apache and PHP

7 May 2010 at 10:47 - Comments

Linux commands

sed -i ’s/abc/xyz/g’ *.php This command is used for mass replacemet using regular expression. In the above command “abc” is replace with “xyz” from all the files extension “php”. find /var/www/html/sch_admin/ -mtime -1 This command is used to list all the files within the specified folder,say “var/www/html/sch_admin/”, which have been created or modified within the period specified,say “-1″ which [...]

30 January 2010 at 12:22 - Comments