https://github.com/hatamiarash7/memcached-admin
Memcached admin for docker
https://github.com/hatamiarash7/memcached-admin
admin admin-dashboard cache cache-storage cachemanager docker docker-image hacktoberfest memcache memcached
Last synced: 8 months ago
JSON representation
Memcached admin for docker
- Host: GitHub
- URL: https://github.com/hatamiarash7/memcached-admin
- Owner: hatamiarash7
- License: gpl-3.0
- Created: 2020-03-28T19:05:03.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2025-03-14T12:50:05.000Z (about 1 year ago)
- Last Synced: 2025-03-27T12:02:02.257Z (about 1 year ago)
- Topics: admin, admin-dashboard, cache, cache-storage, cachemanager, docker, docker-image, hacktoberfest, memcache, memcached
- Language: PHP
- Homepage:
- Size: 438 KB
- Stars: 35
- Watchers: 2
- Forks: 5
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# Memcached Admin
  [](https://github.com/hatamiarash7/Memcached-Admin/actions/workflows/docker-image.yml) [](https://github.com/hatamiarash7/Memcached-Admin/actions/workflows/docker-publish.yml)
This program allows to see in **real-time** (top-like) or from the start of the server, **stats for get, set, delete, increment, decrement, evictions, reclaimed, cas command**, as well as **server stats** (network, items, server version) with google charts and **server internal configuration**
You can go further to **see each server slabs, occupation, memory wasted and items** (**key & value**).
Another part can execute commands to any memcached server : get, set, delete, flush_all, as well as execute any commands (like stats) with telnet

## Statistics
- Stats for each or all memcached servers, items, evicted, reclaimed ...
- Stats for every command : set, get, delete, incr, decr, cas ...
- Slabs stats (Memory, pages, memory wasted, items)
- Items stats (View items in slabs, then data for each key)
- Network stats (Traffic, bandwidth)
## Commands
- Execute commands : get, set, delete, flush_all on servers to administrate or debug it
- Get data with key on servers
- Delete keys on servers
- Flush servers
- Execute telnet command directly from phpMemcachedAdmin
- Search for specific pattern into all keys
## Live Stats
- Top-like real time stats with configurable alerts
## Configuration
- Edit configuration directly from web page
- phpMemcachedAdmin can use socket communication, PECL Memcache or Memcached API
- Organize your servers into cluster
---
### Install
#### Single server setup
Environments :
- **MEMCACHED_HOST** : Default address of the server
- **MEMCACHED_PORT** : Default port of the server
```shell
docker run --rm -p 8080:80 -e MEMCACHED_HOST='127.0.0.1' -e MEMCACHED_PORT='11211' hatamiarash7/memcached-admin:master
```
#### Multiple server setup (using the `Default` cluster)
Environments :
- **MEMCACHED_HOST** : Comma separated hostname and optional port
- **MEMCACHED_PORT** : Default port of the hostnames not having a port specified
```shell
docker run --rm -p 8080:80 -e MEMCACHED_HOST='127.0.0.1:11211,127.0.0.1:11212' hatamiarash7/memcached-admin:master
# or
docker run --rm -p 8080:80 -e MEMCACHED_HOST='127.0.0.1,127.0.0.2' -e MEMCACHED_PORT='11211' hatamiarash7/memcached-admin:master
# or
docker run --rm -p 8080:80 -e MEMCACHED_HOST='127.0.0.1:11212,127.0.0.1' -e MEMCACHED_PORT='11211' hatamiarash7/memcached-admin:master
```
You can define your cluster in **Configuration** section
### Test
We have a `docker-compose.yml` file here for testing purpose. You can run it with the following command:
```bash
docker compose up -d
```
Open your browser and go to http://localhost:8085/index.php?server=memcached:11211 to see the dashboard.
---
## Support
[](https://en.cryptobadges.io/donate/3GhT2ABRuHuXGNzP6DH5KvLZRTXCBKkx2y) [](https://en.cryptobadges.io/donate/0x4832fd8e2cfade141dc4873cc00cf77de604edde)
[](https://ko-fi.com/D1D1WGU9)
## Contributing
Don't be shy to be a contributor 😉
1. Fork it !
2. Create your feature branch : `git checkout -b my-new-feature`
3. Commit your changes : `git commit -am 'Add some feature'`
4. Push to the branch : `git push origin my-new-feature`
5. Submit a pull request
## Issues
Each project may have many problems. Contributing to the better development of this project by reporting them.