Announcement

Collapse
No announcement yet.

Install Memcache on CentOS (WHM/cPanel)

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Install Memcache on CentOS (WHM/cPanel)

    Without wasting much time, Let us get started!


    Follow these simple instructions:

    Step 1: Login into your WHM panel and using easyapache enable Memcache

    Step 2: SSH into your server and fire this command yum install memcached.x86_64 php-pecl-memcache.x86_64

    Step 3: Go to Software -> Module Installers -> PHP Pecl, Search for memcache and then install both memcache & memcached

    Step 4: Restart apache once, Fire: service httpd restart

    Step 5: Start memcache by firing this command: memcached -d -m 512 -l 127.0.0.1 -p 11211 -u nobody (d = daemon, m = memory, u = user, l = IP to listen to, p = port)

    Step 6: Check your memcached server is running successfully: ps -eaf | grep memcached


    All Done! If everything goes good, You should now be able to use memcached within your application.

    Enjoy Caching :)
Working...
X