虚幻0516 发表于 2018-12-24 14:07:38

安装 memcached

  memcache
  boot
  ----------------------------------------------
  #!/bin/sh
#
# memcached    Startup script for memcached processes
#
# chkconfig: - 90 10
# description: Memcache provides fast memory based storage.
# processname: memcached
  # These mappings correspond one-to-one with Drupal's settings.php file.
# Source function library.
. /etc/rc.d/init.d/functions
  [ -f memcached ] || exit 0
  prog="memcached"
  start() {
    echo -n $"Starting $prog "
    # Sessions cache.
    /usr/local/memcached/bin/memcached -m 32 -l 127.0.0.1 -p 11216 -d -u nobody -c 2048 -P /var/run/memcached.pid
/usr/local/memcached/bin/memcached -m 32 -l 127.0.0.1 -p 11212 -d -u nobody -c 2048 -P /var/run/memcached2.pid
    # Default cache.
#    memcached -m 32 -l 0.0.0.0 -p 11212 -d -u nobody
    # Block cache.
#    memcached -m 32 -l 0.0.0.0 -p 11213 -d -u nobody
    # Content cache. Holds fully loaded content type structures.
#    memcached -m 16 -l 0.0.0.0 -p 11214 -d -u nobody
    # Filter cache. Usually the busiest cache after the default.
#    memcached -m 32 -l 0.0.0.0 -p 11215 -d -u nobody
    # Form cache.
#    memcached -m 32 -l 0.0.0.0 -p 11216 -d -u nobody
    # Menu cache.
#    memcached -m 32 -l 0.0.0.0 -p 11217 -d -u nobody
    # Page cache. Bigger than most other caches.
#    memcached -m 128 -l 0.0.0.0 -p 11218 -d -u nobody
    # Views definition cache.
#    memcached -m 1 -l 0.0.0.0 -p 11219 -d -u nobody
    # Views data cache (may need to be increased if heavily used).
#    memcached -m 32 -l 0.0.0.0 -p 11220 -d -u nobody
  # More caches that might be added later:
  # Users table.
    #/usr/bin/memcached -m 24 -l 0.0.0.0 -p 11219 -d -u nobody
    # Path source cache.
    #/usr/bin/memcached -m 4 -l 0.0.0.0 -p 11220 -d -u nobody
    # Path destination cache.
    #/usr/bin/memcached -m 6 -l 0.0.0.0 -p 11221 -d -u nobody
    RETVAL=$?
    echo
    return $RETVAL
}
  stop() {
    if test "x`pidof memcached`" != x; then
      echo -n $"Stopping $prog "
      killall memcached
      echo
    fi
    RETVAL=$?
    return $RETVAL
}
  case "$1" in
      start)
            start
            ;;
  stop)
            stop
            ;;
  restart)
            stop
            start
            ;;
      condrestart)
            if test "x`pidof memcached`" != x; then
                stop
                start
            fi
            ;;
  *)
            echo $"Usage: $0 {start|stop|restart|condrestart}"
            exit 1
  esac
  exit $RETVAL
  --------------------------------------------------------install
  http://code.google.com/p/memcached/wiki/NewStart
  
1.yum install libevent*
  2.wget http://memcached.org/latest
tar -zxvf memcached-1.x.x.tar.gz
cd memcached-1.x.x
  ./configure --prefix=/usr/local/memcached
  make && make test
sudo make install
  
3.vim /etc/php.ini
  session.save_handler = memcache
session.save_path = "tcp://127.0.0.1:11216"
  4.php 安装memcache 模块
  
tar zxvf memcache-2.2.5.tgz
cd memcache-2.2.5/
/usr/local/php/bin/phpize
./configure --with-php-config=/usr/local/php/bin/php-config
make ;make install
cd ../
  ---------------------------------------安装以后的提示
Build complete.
Don't forget to run 'make test'.
  Installing shared extensions:   /usr/local/php/lib/php/extensions/no-debug-non-zts-20090626/
  5.vim /etc/php.ini
  extension = "memcache.so"
  /etc/init.d/memcached




页: [1]
查看完整版本: 安装 memcached