Facebook Twitter Instagram
    TecAdmin
    • Home
    • Ubuntu 20.04
      • Upgrade Ubuntu
      • Install Java
      • Install Node.js
      • Install Docker
      • Install LAMP Stack
    • Tutorials
      • AWS
      • Shell Scripting
      • Docker
      • Git
      • MongoDB
    • FeedBack
    • Submit Article
    • About Us
    Facebook Twitter Instagram
    TecAdmin
    Home»Caching Server»How to SetUp phpMemcachedAdmin on Linux

    How to SetUp phpMemcachedAdmin on Linux

    RahulBy RahulNovember 16, 20132 Mins ReadUpdated:June 28, 2018

    phpMemcachedAdmin provides a web based interface to monitor and manage memcache service on Linux. This program allows to see in real-time stats for get, set, delete, increment, decrement, evictions, reclaimed, cas command, as well as server stats (network, items, server version) with googlecharts and server internal configuration.


    Read Article:

    Install Memcached with PHP on Ubuntu
    Install Memcached on CentOS & RedHat


    This article will help you to setup phpMemcachedAdmin on CentOS, RHEL and Fedora Systems.

    Download phpMemcachedAdmin Archive

    Create a directory on your web server like below and download phpMemcachedAdmin archive file. Click here to check latest version available.

    mkdir -p /var/www/phpMemcachedAdmin
    cd /var/www/phpMemcachedAdmin
    wget http://phpmemcacheadmin.googlecode.com/files/phpMemcachedAdmin-1.2.2-r262.tar.gz
    

    After completing download extract archive using following command.

    tar xzf phpMemcachedAdmin-1.2.2-r262.tar.gz
    chown -R apache.apache phpMemcachedAdmin
    chmod -R 755 phpMemcachedAdmin
    

    Setup phpMemcachedAdmin in Apache

    Create a new configuration file for phpMemcachedAdmin in apache like below and add the given content below. For debian and ubuntu users create configuration file under /etc/apache2/sites-enabled/ directory.

    vim /etc/httpd/conf.d/phpMemcachedAdmin.conf
    
    # phpMemcachedAdmin - Web based Memcached browser written in php
    
    Alias /phpMemcachedAdmin /var/www/phpMemcachedAdmin
    Alias /phpmemcachedadmin /var/www/phpMemcachedAdmin
    
    <Directory /var/www/phpMemcachedAdmin>
         Order Deny,Allow
         Deny from All
         Allow from 192.168.1.0/24
         Allow from 127.0.0.1
    </Directory>
    <Directory /var/www/phpMemcachedAdmin>
         AuthUserFile /etc/httpd/.htpasswd
         AuthName "phpMemcachedAdmin Login Area"
         AuthType Basic
         require user admin
    </Directory>
    
    

    Setup Basic Apache Authentication

    Implement Apache basic security to secure phpMemcachedAdmin url to prevent from unauthorized access.

    # htpasswd -cm /etc/httpd/.htpasswd admin
    
    New password:
    Re-type new password:
    Adding password for user admin
    

    Step 4: Restart Apache and Access URL

    You have all done, Just restart apache and access the phpMemcachedAdmin url in browser.

    # service httpd restart
    

    Access url like below using FQDN or IP address of server.

     http://svr1.tecadmin.net/phpMemcachedAdmin/

    phpMemcachedAdmin-screen

    phpMemcachedAdmin-Configure

    Congratulation’s! You have successfully configured phpMemcachedAdmin for your managing memcached.

    cachingserver PHP phpMemcachedAdmin Setup phpMemcachedAdmin
    Share. Facebook Twitter Pinterest LinkedIn Tumblr Email WhatsApp
    Previous ArticleHow to Install Banshee 2.6 on Ubuntu
    Next Article How to Import Private Key in FileZilla for SFTP

    Related Posts

    How To Install PHP (8.1, 7.4 or 5.6) on Ubuntu 22.04

    Updated:May 9, 20223 Mins Read

    How To Install LAMP Stack on Ubuntu 22.04 LTS

    Updated:April 20, 20225 Mins Read

    How To Setup Apache, PHP & MongoDB in Ubuntu & Debian

    Updated:October 8, 20213 Mins Read

    How To Install and Use PHP Composer on Debian 11

    Updated:February 16, 20224 Mins Read

    How To Install PHP (8.1, 7.4 & 5.6) on Debian 11

    Updated:February 16, 20224 Mins Read

    How to Enable Debug Mode in Laravel

    Updated:May 28, 20211 Min Read

    4 Comments

    1. Di on August 21, 2019 1:30 pm

      I have some problème, i van t acces the vies of the phpmemcached dashboar
      Need some help, tank you

      Reply
    2. Ved Prakash on June 13, 2019 2:22 pm

      Please update the url for donwloading phpMemcahedAdmin as :
      https://code.google.com/archive/p/phpmemcacheadmin/downloads

      Reply
    3. Monika on July 25, 2017 9:06 pm

      Can we look at historical data?

      Reply
      • Alex on January 9, 2019 7:35 am

        no

        Reply

    Leave A Reply Cancel Reply

    Recent Posts
    • How to Enable / disable Firewall in Windows
    • How to Install JAVA on Ubuntu 22.04
    • Switching Display Manager in Ubuntu – GDM, LightDM & SDDM
    • Changing the Login Screen Background in Ubuntu 22.04 & 20.04
    • How To Install PHP (8.1, 7.4 or 5.6) on Ubuntu 22.04
    Facebook Twitter Instagram Pinterest
    © 2022 Tecadmin.net. All Rights Reserved | Terms  | Privacy Policy

    Type above and press Enter to search. Press Esc to cancel.