HowTo: Install Memcached: Difference between revisions

From IHRIS Wiki
(Created page with 'With version 4.0.4 of iHRIS you can use memcahced to improve performance. ==Install Memcached== First install memcached by opening a terminal and typing: <source lang="bash"> su…')
 
Line 26: Line 26:
Now 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:
Now 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">
<source lang="bash">
sudo apt-get install libmemcahed2 libmemcached-dev apache2-prefork-dev php5-dev
sudo apt-get install libmemcached2 libmemcached-dev apache2-prefork-dev php5-dev
</source>
</source>



Revision as of 11:23, 21 May 2010

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

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

Now 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>

Enable PHP Memcached

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>