HowTo: Install Memcached: Difference between revisions

From IHRIS Wiki
No edit summary
Line 8: Line 8:


==Installation on Intrepid==
==Installation on Intrepid==
'''Warning:'''This is only a rough guide as I did not take good notes.  Please correct.


==Installation on Karmic==
==Installation on Karmic==

Revision as of 09:22, 24 November 2010

With version 4.0.4 of iHRIS you can use memcahced to improve performance

Note: Memcached is used to cache data from the database. Thus if you are an a sitaution where you would need to restart the webserver by

sudo /etc/init.d/apache2 restart

you should now do

sudo /etc/init.d/apache2 restart && sudo /etc/init.d/memcached restart

Installation on Intrepid

Warning:This is only a rough guide as I did not take good notes. Please correct.

Installation on Karmic

Install Memcached

First install memcached by opening a terminal and typing: <source lang="bash"> sudo apt-get install memcached </source>

Then make sure that memcached is enabled. Look at /etc/default/memcached and make sure that it is set to be enabled. You can edit it by typing: <source lang="bash"> sudo gedit /etc/default/memcached </source>

Then make sure the content is: <source lang="ini"> ENABLE_MEMCACHED=yes </source>

If memcached wasn't enabled then after editing that file you'll need to restart it by typing: <source lang="bash"> sudo /etc/init.d/memcached restart </source>


Install PHP Module

Next we need to link memcached with PHP using the memcached PECL library. First make sure the development packages are installed so PECL can compile memcached. Type the following in a terminal: <source lang="bash"> sudo apt-get install libmemcached2 libmemcached-dev apache2-prefork-dev php5-dev </source>

Now install memcached by typing: <source lang="bash"> sudo pecl install memcached </source>


Now enable the module by creating and editing a config file for PHP.

<source lang="bash"> sudo gedit /etc/php5/conf.d/memcached.ini </source>

Save the following for that file: <source lang="ini"> extension=memcached.so </source>

Restart Apache

Now restart apache to enable the PHP memcached library by typing the following in a terminal:

<source lang="bash"> sudo /etc/init.d/apache2 restart </source>

Installation on Lucid or Meerkat

Simply do

sudo apt-get install php5-memcached memcached