html tool

2014年10月21日星期二

memcached 监控工具安装

add:http://ohyeahbbs.blog.51cto.com/1775490/1280910


要先安装yum -install php php-devel 

和apache
1,安装memcache的php扩展:
memadmin运行在支持memcache扩展的php环境中,服务器上需要安装memcache(切记此处不是memcached服务 )+php+ng/apache
PHP扩展(也就是客户端),就是让PHP支持memcache 
php支持:
wget 
http://pecl.php.net/get/memcache-2.2.5.tgz
tar zxvf memcache-2.2.5.tgz
cd memcache-2.2.5
/usr/bin/phpize 
#(生成config编译文件)
./configure --enable-memcache  --enable-shared  --with-php-config=/usr/bin/php-config --with-zlib-dir
make && make install
[popexizhi:
make 时提示错误:error: zlib.h: No such file or directory
add:http://joelinoff.com/blog/?p=811
Figured it: need to yum install bzip2-devel and zlib-devel  --------------------添加后就ok了
]
vi /etc/php.ini 
extension_dir = "/usr/lib64/php/modules" (首先确认extension_dir位置)
extension=memcache.so

2,把下载好的 memadmin-1.0.12.tar.gz 解压到/var/www 里的html目录或者根据你apache或着nginx的配置来存放。
3,直接在浏览器打开访问。。填写帐号密码:admin 
add:https://www.digitalocean.com/community/tutorials/how-to-install-linux-apache-mysql-php-lamp-stack-on-centos-6
yum install httpd
service httpd start
apache:
如果采用RPM包安装,安装路径应在 /etc/httpd目录下
apache配置文件:/etc/httpd/conf/httpd.conf
Apache模块路径:/usr/sbin/apachectl
web目录:/var/www/html

没有评论:

发表评论