需安装php7版本的参考:http://www.yiichina.com/topic/6636 yii2 下使用memcached(非memcache)
http://www.yiichina.com/topic/6635 php7.0下 安装 memcached 和 php扩展memcached
---------------------------------------------------------------
一. memcache服务器端
安装memcached,同时需要安装中指定libevent的安装位置
tar zxvf memcached-1.2.0.tar.gz
cd memcached-1.2.0.tar
./configure –with-libevent=/usr
make
make install
或直接yum apt-get安装
启动服务 :
./memcached -d -m 10 -u root
memcached -d -m -p -u root
参数说明
-d选项是启动一个守护进程, |
二 . 安装php5.5 memcache扩展
这里版本为php5.5.25
下载地址 http://pecl.php.net/package/memcache
tar vxzf memcache-2.2.1.tgz
cd memcache-2.2.1
/usr/local/php/bin/phpize
./configure –enable-memcache –with-php-config=/usr/local/php/bin/php-config
make
make install
问题来了,报错:
[root@iaaa memcache-2.2.1]# ./configure –enable-memcache –with-php-config=/usr/local/php/bin/php-config
configure: WARNING: you should use --build, --host, --target
configure: WARNING: invalid host type: –enable-memcache
configure: error: invalid variable name: `–with-php-config'
解决办法: 这行代码需要你手动输入,直接复制粘贴就会出现这种错误, 参考来自:http://www.wdlinux.cn/bbs/thread-7007-1-1.html
安装完后会有类似这样的提示
Installing shared extensions: /usr/local/php/lib/php/extensions/no-debug-non-zts-2007xxxx/
然后修改php.ini, 添加extension
extension=memcache.so
查找php.ini 执行phpinfo()
修改完成后重启nginx
service nginx restart
问题来了:
重启nginx 后phpinfo() 显示没有加载memcache模块
google发现要需要 php-fpm 来重新加载配置文件php.ini
然后呢安装网上说的
/php-fpm 还有其它参数 ,包括start|stop | quit | restart | reload | logrotate 使用 PHP-FPM 来控制 PHP-CGI 的 FastCGI 进程
--start 启动 PHP 的 fastcgi 进程
--stop 强制终止 PHP 的 fastcgi 进程
--quit 平滑终止 php 的 fastcgi 进程
--restart 重启 php 的 fastcgi 进程
--reload 平滑重新加载 php 的 php.ini
--logrotate 重新启用 log 文件
php5.5的php-fpm 参数
Usage: php-fpm [-n] [-e] [-h] [-i] [-m] [-v] [-t] [-p <prefix>] [-g <pid>] [-c <file>] [-d foo[=bar]] [-y <file>] [-D] [-F]
-c <path>|<file> Look for php.ini file in this directory
-n No php.ini file will be used
-d foo[=bar] Define INI entry foo with value 'bar'
-e Generate extended information for debugger/profiler
-h This help
-i PHP information
-m Show compiled in modules
-v Version number
-p, --prefix <dir>
Specify alternative prefix path to FastCGI process manager (default: /usr/local/php).
-g, --pid <file>
Specify the PID file location.
-y, --fpm-config <file>
Specify alternative path to FastCGI process manager config file.
-t, --test Test FPM configuration and exit
-D, --daemonize force to run in background, and ignore daemonize option from config file
-F, --nodaemonize
force to stay in foreground, and ignore daemonize option from config file
-R, --allow-to-run-as-root
Allow pool to run as root (disabled by default)
所以应该:
service php-fpm stop
./php-fpm -c /usr/local/php/etc/php2.ini
完成后在看phpinif()
显示的memcache模块:
windows中memcached 启动服务:
memcache 未授权访问漏洞
修复方案:
因memcache无权限控制功能,所以需要用户对访问来源进行限制。
方案一:
如果memcache没有在外网开放的必要,可在memcached启动的时候指定绑定的ip地址为 127.0.0.1。例如:
memcached -d -m -u root -l 127.0.0.1 -l 192.168.1.102 -p -c -P /tmp/memcached.pid
其中 -l 参数指定为地址, 可以指定多个地址用逗号分开也可以使用- l多次
。
方案二:(注意:请谨慎配置iptables规则)
如果memcache服务需要对外提供服务,则可以通过iptables进行访问控制。
iptables -A INPUT -p tcp -s 192.168.0.2 --dport -j ACCEPT
上述规则的意思是只允许192.168.0.2这个ip对11211端口进行访问。