标签:php版本 ibm scripts 高可扩展 $0 帮助信息 调试 time 加速
参考文档:
本文简单介绍memcached服务器端的安装配置,与php-memcache客户端连接服务器端的配置与操作。
Memcached是一款开源、高性能、分布式内存对象缓存系统,可应用各种需要缓存的场景,其主要目的是通过降低对Database的访问来加速web应用程序。
Memcached一般的使用场景是:通过缓存数据库查询的结果,减少数据库访问次数,以提高动态Web应用的速度、提高可扩展性。
本质上,memcached是一个基于内存的key-value存储,用于存储数据库调用、API调用或页面引用结果的直接数据,如字符串、对象等小块任意数据。
工作流程如下:
Server:CentOS-7-x86_64-1511
IP:10.11.4.190
libevent-2.1.8
下载:http://ftp.lfs-matrix.net/pub/blfs/conglomeration/libevent/
memcached-1.4.39
下载:https://memcached.org/files/memcached-1.4.39.tar.gz
Memcached服务器端的安装相对简单。
Memcached依赖于libevent API,libevent是个程序库,它将Linux的epoll、BSD类操作系统的kqueue等事件处理功能封装成统一的接口,即使对服务器的连接数增加,也能发挥O(1)的性能。
[root@memcached ~]# cd /usr/local/src/
[root@memcached src]# wget http://ftp.lfs-matrix.net/pub/blfs/conglomeration/libevent/libevent-2.1.8-stable.tar.gz
[root@memcached src]# tar -zxvf libevent-2.1.8-stable.tar.gz
[root@memcached src]# cd libevent-2.1.8-stable
[root@memcached libevent-2.1.8-stable]# ./configure --prefix=/usr/local/libevent
[root@memcached libevent-2.1.8-stable]# make
[root@memcached libevent-2.1.8-stable]# make install
[root@memcached libevent-2.1.8-stable]# ll /usr/local/libevent/lib/ | grep libevent
#最后1步测试是否安装成功。
[root@memcached ~]# cd /usr/local/src/
[root@memcached src]# tar -zxvf memcached-1.4.39.tar.gz.tar
[root@memcached src]# cd memcached-1.4.39
[root@memcached memcached-1.4.39]# ./configure --prefix=/usr/local/memcached -with-libevent=/usr/local/libevent
[root@memcached memcached-1.4.39]# make
[root@memcached memcached-1.4.39]# make install
#注意编译前,生成Makefile文件时,libevent的路径。
[root@memcached ~]# ln -s /usr/local/memcached/bin/* /usr/local/bin/
#简单通过软链接的方式设置环境变量。
[root@memcached ~]# vim /etc/sysconfig/iptables
-A INPUT -p tcp -m state --state NEW -m tcp --dport 80 -j ACCEPT
-A INPUT -p tcp -m state --state NEW -m tcp --dport 11211 -j ACCEPT
[root@memcached ~]# service iptables restart
#tcp11211端口是memcached默认监听端口。
[root@memcached ~]# /usr/local/memcached/bin/memcached -d -m 256 -u root -l 10.11.4.190 -p 11211 -c 1024 -P /usr/local/memcached/memcached.pid
参数说明:
-d:启动一个守护进程,如果前台运行,配合-vv参数,可查看调试信息(主要是存储的信息);
-m:分配给memcached使用的内存数量,单位是MB;
-u:运行memcached的用户,比如root或者memcached,建议采用非root账号;
-l:服务器监听地址,不设置时默认监听本地所有IP地址;
-p:设置memcached的监听端口,默认为11211;
-c:设置最大并发连接数,默认是1024;
-P:设置保存memcached的pid文件;
-v:输出警告和错误信息;
-vv:打印客户端的请求和返回信息;
-h:打印帮助信息;
-i:打印memcached和libevent的版权信息。
[root@memcached ~]# netstat -tunlp
可以通过telnet连接memcached服务器进行数据存储,及数据获取。
[root@memcached ~]# telnet 10.11.4.190 11211
version #查看版本
set test 0 0 5 #设置"key", <command name> <key> <flags> <exptime> <bytes>
mymem #输入"value"值,<data block>,字节数与key中的设的"bytes"相同
get test #获取已设的key的数据
quit #退出
#详细的memcached的命令可参考:http://blog.mimvp.com/2015/01/memcache-start-telnet-command-xiangjie/
#除命令输入,其余均是回显。
[root@memcached ~]# vim /etc/rc.d/init.d/memcached
#!/bin/sh
#
# memcached: MemCached Daemon
#
# chkconfig: - 90 25
# description: MemCached Daemon
#
# Source function library.
. /etc/rc.d/init.d/functions
. /etc/sysconfig/network
MEMCACHED="/usr/local/memcached/bin/memcached"
start()
{
echo -n $"Starting memcached: "
daemon $MEMCACHED -u root -d -m 256 -p 11211 -c 1024 -P /usr/local/memcached/memcached.pid
echo
}
stop()
{
echo -n $"Shutting down memcached: "
killproc memcached
echo
}
[ -f $MEMCACHED ] || exit 0
# See how we were called.
case "$1" in
start)
start
;;
stop)
stop
;;
restart|reload)
stop
start
;;
condrestart)
stop
start
;;
*)
echo $"Usage: $0 {start|stop|restart|reload|condrestart}"
exit 1
esac
exit 0
#注意:第18行参数根据情况调整。
[root@memcached ~]# chmod 775 /etc/rc.d/init.d/memcached
[root@memcached ~]# chkconfig --level 35 memcached on
Memcache支持多客户端,如perl,php,python,c/c++等等,这里主要基于php配置。
其中nginx与php的详细配置请见:http://blog.chinaunix.net/uid-26168435-id-5715005.html
nginx版本:1.12.0
#创建用户
[root@memcached ~]# groupadd www
[root@memcached ~]# useradd -g www -s /sbin/nologin www
#安装依赖包
[root@memcached ~]# yum install pcre pcre-devel openssl openssl-devel zlib zlib-devel -y
#编译安装
[root@memcached ~]# cd /usr/local/src/
[root@memcached src]# wget http://nginx.org/download/nginx-1.12.0.tar.gz
[root@memcached src]# tar -zxvf nginx-1.12.0.tar.gz
[root@memcached src]# cd nginx-1.12.0
[root@memcached nginx-1.12.0]# ./configure --prefix=/usr/local/nginx --without-http_memcached_module --user=www --group=www --with-http_stub_status_module --with-http_ssl_module --with-http_gzip_static_module
[root@memcached nginx-1.12.0]# make
[root@memcached nginx-1.12.0]# make install
[root@memcached nginx-1.12.0]# chown -R www:www /usr/local/nginx
#设置开机启动
[root@memcached ~]# vim /etc/rc.d/init.d/nginx
[root@memcached ~]# chown www:www /etc/rc.d/init.d/nginx
[root@memcached ~]# chmod 775 /etc/rc.d/init.d/nginx
[root@memcached ~]# chkconfig --level 35 nginx on
#开机
[root@memcached ~]# service nginx start
php版本:5.6.31
#安装依赖包
[root@memcached ~]# yum install -y gcc gcc-c++ autoconf libjpeg libjpeg-devel libpng libpng-devel freetype freetype-devel libpng libpng-devel libxml2 libxml2-devel zlib zlib-devel xml2 xml2-devel openssl openssl-devel glibc glibc-devel glib2 glib2-devel bzip2 bzip2-devel ncurses ncurses-devel curl libcurl-devel gdbm-devel db4-devel libXpm libXpm-devel libX11 libX11-devel gd-devel gmp-devel readline-devel libxslt-devel expat-devel xmlrpc-c xmlrpc-c-devel
#编译安装libmcrypt库,
[root@memcached ~]# cd /usr/local/src/
[root@memcached src]# wget http://nchc.dl.sourceforge.net/project/mcrypt/Libmcrypt/2.5.8/libmcrypt-2.5.8.tar.gz
[root@memcached src]# tar -zxvf libmcrypt-2.5.8.tar.gz
[root@memcached src]# cd libmcrypt-2.5.8
[root@memcached libmcrypt-2.5.8]# ./configure
[root@memcached libmcrypt-2.5.8]# make
[root@memcached libmcrypt-2.5.8]# make install
#编译安装php
[root@memcached ~]# cd /usr/local/src/
[root@memcached src]# wget http://php.net/distributions/php-5.6.31.tar.bz2
[root@memcached src]# tar -jxvf php-5.6.31.tar.bz2
[root@memcached src]# cd php-5.6.31
[root@memcached php-5.6.31]# ./configure --prefix=/usr/local/php --with-config-file-path=/usr/local/php/etc --with-mysql --with-pdo-mysql --with-mysqli --with-openssl --with-freetype-dir --with-jpeg-dir --with-png-dir --with-zlib-dir --with-mhash --with-mcrypt --with-bz2 --enable-zip --with-curl --with-gettext --with-iconv --with-xmlrpc --enable-fpm --enable-sockets --enable-sysvshm --enable-mbstring --enable-pdo --enable-libxml --enable-xml --enable-soap --enable-session --enable-ctype --enable-ftp --enable-bcmath --enable-shmop --enable-inline-optimization --enable-opcache --enable-mbregex --enable-pcntl --enable-cgi --enable-wddx
[root@memcached php-5.6.31]# make
[root@memcached php-5.6.31]# make install
#php.ini文件
[root@memcached ~]# cp /usr/local/src/php-5.6.31/php.ini-production /usr/local/php/etc/php.ini
[root@memcached ~]# ln -s /usr/local/php/etc/php.ini /etc/php.ini
#php-fpm.conf文件,取消";pid = run/php-fpm.pid"的注释,同时修改运行账号通nginx服务的运行账号一致
[root@memcached ~]# cp /usr/local/php/etc/php-fpm.conf.default /usr/local/php/etc/php-fpm.conf
[root@memcached ~]# ln -s /usr/local/php/etc/php-fpm.conf /etc/php-fpm.conf
[root@memcached ~]# sed -i ‘s|;pid = run/php-fpm.pid|pid = run/php-fpm.pid|g‘ /usr/local/php/etc/php-fpm.conf
[root@memcached etc]# sed -i ‘s|user = nobody|user = www|g‘ /usr/local/php/etc/php-fpm.conf
[root@memcached etc]# sed -i ‘s|group = nobody|group = www|g‘ /usr/local/php/etc/php-fpm.conf
#设置开机启动
[root@memcached ~]# cp /usr/local/src/php-5.6.31/sapi/fpm/init.d.php-fpm /etc/rc.d/init.d/php-fpm
[root@memcached ~]# chown www:www /etc/rc.d/init.d/php-fpm
[root@memcached ~]# chmod 755 /etc/rc.d/init.d/php-fpm
[root@memcached ~]# chkconfig --level 35 php-fpm on
#设置nginx支持php
[root@memcached ~]# vim /usr/local/nginx/conf/nginx.conf
#第2行,取消user的注释,修改运行账号为www www,与/usr/local/php/etc/php-fpm.d/www.conf中的user/group配置一致
user www www;
#第45行,添加index.php
index index.html index.htm index.php;
#第65~71行,取消FastCGI server部分location的注释;注意fastcgi_param行的参数,改为$document_root$fastcgi_script_name,或者使用绝对路径
#pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ \.php$ {
root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
#验证测试
[root@memcached ~]# echo -e "<?php\nphpinfo();\n?>" > /usr/local/nginx/html/index.php
[root@memcached ~]# chown -R www:www /usr/local/nginx/html/
[root@memcached ~]# chmod -R 700 /usr/local/nginx/html/
[root@memcached ~]# service nginx restart
[root@memcached ~]# service php-fpm start
memcached在1.2.4版本(含)以上增加了CAS(Check and Set)协议,即对同一key的多进行程的并发处理问题。
类比数据库,如果同时有多个进程对同一张表的同一数据进行更新,数据库可以锁定整张表,也可以锁定表内某一行数据,memcached的CAS功能与此相似。
php-memcache扩展不支持CAS,需要先安装php-memcached扩展(注意与php-memcache扩展的区别),php-memcached扩展基于libmemcached,所以要先安装libmemcached,即php-memcached的库。
libmemcached版本:1.0.18
https://launchpad.net/libmemcached/+download
#下载libmemcached
[root@memcached ~]# cd /usr/local/src/
[root@memcached src]# wget https://launchpadlibrarian.net/165454254/libmemcached-1.0.18.tar.gz
#编译安装,生成Makefile文件时,切记"--with-memcached"参数
[root@memcached src]# tar -zxvf libmemcached-1.0.18.tar.gz.tar
[root@memcached src]# cd libmemcached-1.0.18
[root@memcached libmemcached-1.0.18]# ./configure --prefix=/usr/local/libmemcached --with-memcached
[root@memcached libmemcached-1.0.18]# make
[root@memcached libmemcached-1.0.18]# make install
php-memcached版本:2.2.0(3.0.0及以上版本针对php7.0及以上版本)
http://pecl.php.net/package/memcached
php扩展分原生扩展与第三方扩展,在php的源码解压包下的"ext/"目录下可查看所有的原生扩展,php-memcached及php-memcache属于第三方扩展。
#下载php-memcached
[root@memcached ~]# cd /usr/local/src/
[root@memcached src]# wget http://pecl.php.net/get/memcached-2.2.0.tgz
#编译安装
#phpize: 用于扩展php模块,通过phpize可以建立php的外挂模块
#--enable-memcached: 配置编译环境,编译器编译php源码时使能相应扩展
#--with-php-config:指定php-config文件路径
#--with-libmemcached-dir:指定libmemcached安装目录
#--disable-memcached-sasl:去使能sasl认证,因为没有预安装相应功能
#make:把源码编译成xxxxx.so文件
#make install: 把xxxxx.so文件移动到当前安装php的扩展目录
[root@memcached src]# tar -zxvf memcached-2.2.0.tgz
[root@memcached src]# cd memcached-2.2.0
[root@memcached memcached-2.2.0]# /usr/local/php/bin/phpize
[root@memcached memcached-2.2.0]# ./configure --enable-memcached --with-php-config=/usr/local/php/bin/php-config --with-libmemcached-dir=/usr/local/libmemcached --disable-memcached-sasl
[root@memcached memcached-2.2.0]# make
[root@memcached memcached-2.2.0]# make install
php-memcached版本:2.2.7(stable version)
http://pecl.php.net/package/memcache
#下载php-memcache
[root@memcached ~]# cd /usr/local/src/
[root@memcached src]# wget http://pecl.php.net/get/memcache-2.2.7.tgz
#编译安装
[root@memcached src]# tar -zxvf memcache-2.2.7.tgz
[root@memcached src]# cd memcache-2.2.7
[root@memcached memcache-2.2.7]# /usr/local/php/bin/phpize
[root@memcached memcache-2.2.7]# ./configure --enable-memcache --with-php-config=/usr/local/php/bin/php-config
[root@memcached memcache-2.2.7]# make
[root@memcached memcache-2.2.7]# make install
php-intl版本:3.0.0
http://pecl.php.net/package/intl
#php-intl是php国际化扩展,是ICU库的一个包装器,安装php-intl扩展前要先安装ICU库
[root@memcached ~]# yum install -y icu libicu libicu-devel
#下载php-intl
[root@memcached ~]# cd /usr/local/src/
[root@memcached src]# wget http://pecl.php.net/get/intl-3.0.0.tgz
#编译安装
[root@memcached src]# tar -zxvf intl-3.0.0.tgz
[root@memcached src]# cd intl-3.0.0
[root@memcached intl-3.0.0]# /usr/local/php/bin/phpize
[root@memcached intl-3.0.0]# ./configure --enable-intl --with-php-config=/usr/local/php/bin/php-config
[root@memcached intl-3.0.0]# make
[root@memcached intl-3.0.0]# make install
通过查看php源码解压包下的"ext/"目录,php-intl属于原生扩展,理论上可以不用下载,直接在"ext/"下相应扩展目录下编译安装即可。
php启用扩展有2种方式(本文介绍方式1):
#修改php.ini,添加扩展,可在第732行后添加扩展(非必须),第732行的" extension_dir"路径修改为绝对路径(非必须,相对路径也可)
[root@memcached ~]# vim /usr/local/php/etc/php.ini
[Intl]
extension = intl.so
[Memcached]
extension = memcached.so
[Memcache]
extension = memcache.so
[root@memcached ~]# service php-fpm restart
#查看扩展模块方式
[root@memcached ~]# /usr/local/php/bin/php -m | grep -E ‘memcache|intl‘
#phpinfo()方式,利用前面已经生成的index.php文件即可
http://10.11.4.190/index.php
#修改index.php
[root@memcached ~]# vim /usr/local/php/etc/php.ini
[root@memcached html]# cp index.php index.php.bak
[root@memcached html]# echo "" > index.php
[root@memcached html]# vim index.php
<?php
$memcache = new Memcache; #创建一个memcache对象
$memcache->connect(‘localhost‘, 11211) or die ("Could not connect"); #连接memcached服务器
$memcache->set(‘key‘, ‘memcache-test‘); #设置1个变量到内存中,key=key, value=memcache-test
$get_value = $memcache->get(‘key‘); #从内存取出key的value
echo $get_value; #回显
?>
#浏览器访问
http://10.11.4.190/index.php
标签:php版本 ibm scripts 高可扩展 $0 帮助信息 调试 time 加速
原文地址:http://www.cnblogs.com/netonline/p/7805900.html