In this tutorial we will show you how to install Memcached on Debian 9. For those of you who didn’t know, Memcached is a system daemon that allows you to cache information on RAM memory, this allows you better app speeds and avoid bad performance on your dedicated or vps server. It is very useful for optimizing dynamic websites and enabled speed by caching objects in memory.
This article assumes you have at least basic knowledge of linux, know how to use the shell, and most importantly, you host your site on your own VPS. The installation is quite simple and assumes you are running in the root account, if not you may need to add ‘sudo’ to the commands to get root privileges. I will show you through the step by step installation Memcached on a Debian 9 (Stretch) server.
Install Memcached on Debian 9 Stretch
Step 1. Before we install any software, it’s important to make sure your system is up to date by running these following apt-get commands in the terminal:
1 2 | apt-getupdate apt-getupgrade |
Step 2. Installing Memcached.
Now use following command to install memcached service on your system:
1 | apt-getinstallmemcachednetcat |
Step 3. Configuration Memcached.
The default configuration file can be found at:
1 | nano/etc/memcached.conf |
Change the settings, Example settings for 512MB caching:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | # Start with a cap of 64 megs of memory. It's reasonable, and the daemon default # Note that the daemon will grow to this size, but does not start out holding this much # memory -m512 # Default connection port is 11211 -p11211 # Run the daemon as root. The start-memcached will default to running as root if no # -u command is present in this config file -umemcache # Specify which IP address to listen on. The default is to listen on all IP addresses # This parameter is one of the only security measures that memcached has, so make sure # it's listening on a firewalled interface. # -l 127.0.0.1 |
Exit and save the configuration file, and then restart Memcached:
1 2 | systemctlrestartmemcached systemctlenablememcached |
Step 4. Configure Firewall for Memcached.
Run the following commands to allow the incoming connection on Port no 11211:
1 2 | firewall-cmd--permanent--zone=public--add-port=11211/tcp firewall-cmd--reload |
Step 5. Installing Memcached extension for PHP.
You will also need to install required php extension for memcached:
1 | apt-getinstallphp-memcached |
Now, we can restart Apache so that the changes take place:
1 | systemctlrestartapache2 |
To test PHP, create a test file named info.php with he content below. Save the file, then browse to it to see if PHP is working:
1 | nano/var/www/html/info.php |
1 2 3 | <?php phpinfo(); ?> |
Congratulation’s! You have successfully installed Memcached. Thanks for using this tutorial for installing Memcached on Debian 9 (Stretch) system. For additional help or useful information, we recommend you to check the official Memcached web site.