您的位置:首页 > 其它

查找特定文件类型,特定用户文件然后解压缩

2009-03-27 13:35 211 查看
1. 安装libevent
wget https://sourceforge.net/projects/levent/files/libevent/libevent-2.0/libevent-2.0.22-stable.tar.gz --no-check-certificate
tar zxvf libevent-2.0.22-stable.tar.gz -C /usr/src/
cd /usr/src/libevent-2.0.22-stable
./configure --prefix=/usr/local/libevent
make
make install
2. 安装memcached
tar zxvf memcached-1.4.22.tar.gz -C /usr/src/
cd /usr/src/memcached-1.4.22
./configure --prefix=/usr/local/memcached --with-libevent=/usr/local/libevent
make
make install
useradd memcache -s /sbin/nologin
chown -R memcache:memcache /usr/local/memcached/
/usr/local/memcached/bin/memcached -u memcache -m 1024 -l 192.168.20.12 -p 1340 -c 2000 -d -P /tmp/memcached.pid
启动参数说明:
-u 指定启动用户
-m 指定使用多少内存
-l 指定监听地址
-p 指定监听端口
-c 指定最大同时连接数
-d 以守护进程方式运行(在后台运行)
-P 指定存放PID的文件
-h 查看帮助信息

3. php添加memcache支持
tar zxvf memcache-2.2.7.tgz -C /usr/src/
cd /usr/src/memcache-2.2.7
/usr/local/php/bin/phpize
./configure --with-php-config=/usr/local/php/bin/php-config --enable-memcache
make
make install
vi /usr/local/php/etc/php.ini
extension=memcache.so      //添加
4. 重启nginx、php
kill -HUP `cat /usr/local/nginx/logs/nginx.pid`
kill -USR2 `cat /usr/local/php/var/run/php-fpm.pid`


本文出自 “我的青春我做主” 博客,请务必保留此出处http://qikangwei.blog.51cto.com/2282397/1612914
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: