Friday, 28 June 2013

Install and Configure Server Monitoring Tools



1.    Munin
Munin is a network resource monitoring tool that can help analyze resource trends and “what just happened to kill our performance?” Munin graphs server performance over time, administrators can later use this information to make an informed decision about when to add more resources.
1.1.        Install Munin
Make sure apache, PHP and MySQL are properly installed and are working on your webserver.
Since Munin will be running on only one system we will need the master and client installed on the same system. Following is command to download and install munin
sudo aptitude install munin munin-node
1.2.        Configure Munin
When the installation in complete, open the Munin configuration file with your text editor of choice. Change the htmldir path from /var/cache/munin/www to /var/www/munin.
sudo vi /etc/munin/munin.conf
dbdir   /var/lib/munin
htmldir /var/cache/munin/www
logdir /var/log/munin
rundir  /var/run/Munin

New Path.
htmldir /var/www/munin
Now we need to move the Munin directory out of /var/cache/munin/www into /var/www/munin with the help of the mv command.
sudo mv /var/cache/munin/www/ /var/www/munin
Assign the Munin directory right permissions and now you can start Munin.
sudo /etc/init.d/munin-node start
Munin can be accessed by pointing the web browser to:
 

2.    Monit
Monit is a free open source utility for managing and monitoring, processes, files, directories and file systems on a UNIX system. Monit conducts automatic maintenance and can send alert emails in error situations.
2.1.        Install Monit
sudo apt-get install monit
2.2.        Edit the Monit Config File
cd /etc/monit
sudo vi monitrc
2.3.        Enable the web interface
set httpd port 2812
allow admin:pa$$w0rd # require user 'admin' with password 'pa$$w0rd'
2.4.        Start Monit
sudo service monit start                                                                      

2.5.        Setup email alerts
set mailserver localhost
set mail-format { from: monit@myserver.domain.com }
set alert sysadmin@domain.com

2.6.        Monitor the machine itself
check system myserver.domain.com
    if loadavg (1min) > 4 then alert
    if loadavg (5min) > 3 then alert
    if memory usage > 75% then alert
    if cpu usage (user) > 70% then alert
    if cpu usage (system) > 30% then alert
    if cpu usage (wait) > 20% then alert

3.    New Relic
New Relic is the all-in-one web application performance tool that lets you see performance from the end user experience, through servers, and down to the line of application code. Following are steps to install new relic.
Create free account on www.newrelic.com
3.1.            Configure the New Relic apt repository.
Add the following line to
/etc/apt/sources.list.d/newrelic.list. (Create the file if it does not already exist.)

deb http://apt.newrelic.com/debian/ newrelic non-free
This step only needs to be done once on each system.
3.2.        Trust the New Relic GPG key.
This step is required to register New Relic as an authenticated source where apt-get will look for new packages. To get the New Relic public apt-key from global key servers, run the following command as root:
wget -O- http://download.newrelic.com/548C16BF.gpg | apt-key add -

Note: If you do not run this command as root, you may see an error message about the public key. If this occurs, include "sudo" in the command:
wget -O- http://download.newrelic.com/548C16BF.gpg | sudo apt-key add -

3.3.        Update the local package list
Execute the following command as root:
 apt-get update

3.4.        Install the Server Monitor
Execute the following command as root:
apt-get install newrelic-sysmond

If you see a warning about your license key at this point, you may ignore it.
3.5.        Configure your New Relic license key.
Your license key appears in the Account Information section of your New Relic Account Settings page. Execute the following command as root. (This step only needs to be done once on each system.)
nrsysmond-config --set license_key=YOUR_LICENSE_KEY
 
Optional: You can set the license_key configuration setting directly in

/etc/newrelic/nrsysmond.cfg instead.

3.6.        Start nrsysmond.
Execute the following command as root:
/etc/init.d/newrelic-sysmond start
Verify that a message indicates that nrsysmond has started successfully. Your server statistics will start being reported in the Servers area of your New Relic dashboard.
3.7.        Uninstalling
To uninstall New Relic, execute the following command as root:
For apt: apt-get remove newrelic-sysmond
4.    Htop
sudo apt-get install htop

Thursday, 13 June 2013

Multi-Site Configurations & Setup

1.    Multi-site configurations for windows & ubuntu 

1.1. Configurations on windows

1.1.1.   Configure Hosts file: C:\windows\system32\Drivers\etc\

Following are configurations in hosts file…
 127.0.0.1    localhost
 127.0.0.1    your-sub-site

1.1.2.   Configure httpd-vhosts file: D:\xampp\apache\conf\extra

Following are configurations…
 NameVirtualHost your-site: 80
 NameVirtualHost your-sub-site: 80
<VirtualHost *:80>
 DocumentRoot DIRECTORY: /xampp/htdocs
ServerName localhost
</VirtualHost>
<VirtualHost localhost: 80>
         DocumentRoot DIRECTORY: /xampp/htdocs
          ServerName localhost
</VirtualHost>
<VirtualHost your-sub-site: 80>
           DocumentRoot DIRECTORY: /xampp/htdocs/your-site
          ServerName your-sub-site
</VirtualHost>

1.1.3.    Restart Servers

1.1.4.   Database Settings

Create new database and setup settings.php for your-sub-site.
  Move settings.php in /sites/your-sub-site/

1.2. Configurations on Ubuntu server

1.2.1.   Configure Hosts file: /etc/ ONLY FOR LOCAL SYSTEM

        Following are configurations in hosts file…
 127.0.0.1    localhost
 127.0.0.1    your-sub-site

1.2.2.   Create the New Virtual Host File

The next step is to set up the apache configuration. Go to sites-available directory and make a copy of the file “default” (naming it after your domain name) in the same directory:
sudo cp /etc/apache2/sites-available/default /etc/apache2/sites-available/your-sub-site

1.2.3.   Turn on Virtual Hosts

Open up the new config file:
 sudo nano /etc/apache2/sites-available/your-sub-site

1.2.4.   Set Server Name

We are going to set up a virtual host in this file.
The first step is to insert a line for the ServerName under the ServerAdmin line.
  ServerName your-sub-site 

1.2.5.   Create Site Folder and Assign Proper Permissions

Create site folder in /site/sites/your-sub-site       

1.2.6.   Activate the Site

Now activate the host, with the built in apache shortcut:
sudo a2ensite your-sub-site

1.2.7.   Restart Apache

We’ve made a lot of the changes to the configuration, and the virtual host is set up. However none of the changes that we made will take effect until Apache is restarted. Use following commands to reload settings and restart apache:
sudo service apache2 reload
sudo service apache2 restart

1.2.8.   Database Settings

Create new database and setup settings.php for your-sub-site.
 Move settings.php in /sites/your-sub-site/

1.2.9.   Symlinks

Remove source (dsmstg.tchadv.com) directory
ln -s destination-directory simlink-name

2.    Steps to start a new site 

  Following are the steps to follow to launch a new site.

2.1.Create new site folder in sites module

2.1.1.   Building out the home site folder

The home folder of the site contains
§  the settings.php file for the site
    • any custom themes for the site
    • any custom modules required for the site
    • the files folder for the site
In multi-site the sites are all subfolders of the "sites" directory.
Example:
{cloudmlm_home}/sites/mysite.com
On the development environment this ends up being:
/var/www/cloudmlm/sites/mysite.com

2.2.Create a database dump (Core database)

2.2.1.   Import database and create settings.php for site

2.2.2.   Configuring settings.php

Make sure the database line looks like:
$databases = array (
  'default' => 
  array (
    'default' => 
    array (
      'database' => 'database_name',
      'username' => 'database_user_name',
      'password' => 'database_password',
      'host' => 'host_server_ip',
      'port' => '',
      'driver' => 'mysql',
      'prefix' => '',
    ),
  ),
);

2.3.Themes required for the site

As database of site is totally separate so it will be possible to use different theme for sites. To change theme of a site follow these steps

2.3.1.   Copy core theme in site’s themes folder

/sites/{mysite.com}/themes/mytheme 

2.3.2.   Rename the theme with site name

2.3.3.   Open admin interface and change the theme

2.3.4.   Do changes/designing in theme

2.4.Modules required for the site

In case a site needs some functionality in a different way will have to change the particular module or write new module for that site. Following are steps to change a theme

2.4.1.   Move/create module in  site’s modules folder

/sites/{mysite.com}/modules/mymodule 

2.4.2.   Code and enable module

2.4.3.   It will start working

2.5.Files folder

The files folder needs to be in the subsite.
Note! Do not check the file folder into version control. 

2.6.Push everything on git

2.7.Site is ready