輕量級Memcached管理監控工具MemAdmin部署
阿新 • • 發佈:2018-12-10
1、搭建LNMP環境,可參考上篇博文
2、下載MemAdmin,並放在站點目錄下
[[email protected] ~]# cd /application/nginx/html/blog/ [[email protected] blog]# wget -q http://www.junopen.com/memadmin/memadmin-1.0.12.tar.gz [[email protected] blog]# tar -xf memadmin-1.0.12.tar.gz [[email protected] blog]# ls -l memadmin 總用量 36 drwxrwxrwx 2 root root 4096 6月 19 2013 apps -rwxrwxrwx 1 root root 1214 6月 19 2013 config.php drwxrwxrwx 2 root root 4096 6月 19 2013 images drwxrwxrwx 6 root root 4096 6月 19 2013 include -rwxrwxrwx 1 root root 184 6月 19 2013 index.php drwxrwxrwx 2 root root 4096 6月 19 2013 langs -rwxrwxrwx 1 root root 1489 6月 19 2013 LICENSE.txt -rwxrwxrwx 1 root root 1118 6月 19 2013 README.txt drwxrwxrwx 2 root root 4096 6月 19 2013 views
3、測試訪問,初始賬戶和密碼為admin 4、set插入資料,然後看變化
[[email protected] ~]# cd /server/scripts/
# set寫入資料
[[email protected] scripts]# cat w.sh
for n in `seq -w 99`
do
printf "set key$n 0 0 5\r\nrsq$n\r\n"|nc 127.0.0.1 11211
done
[[email protected] scripts]# bash w.sh
STORED
...
...
...
STORED
5、其它介面展示
# 讀取資料
[[email protected] scripts]# cat r.sh
for n in `seq -w 99`
do
printf "get key$n\r\n"|nc 127.0.0.1 11211
done
[[email protected] scripts]# bash r.sh
VALUE key01 0 5
rsq01
END
...
...
...
VALUE key99 0 5
rsq99
END
[[email protected] scripts]#
6、總結
MemAdmin是一款輕量級Memcached管理監控工具,不過也好久沒更新過了,最新更新截止到12年,但是測試用起來還不錯,也許不太適合工作環境吧。