博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Redis 安装与配置
阅读量:5846 次
发布时间:2019-06-18

本文共 1916 字,大约阅读时间需要 6 分钟。

 
》 Linux安装:

   redis的编译简单得不能再简单,不愧是简单好用的产品。

  # tar -zxvf redis-2.8.16.tar.gz

  # cd redis-2.8.16

  # make

  # make test

  # make PREFIX=/usr/local/redis install

   之前centos下有个必须的东西是 tcl, 从库安装即可。

  而且,它已经复制到了相应bin之下, 可以直接# redis-server 启动。

   

  控制脚本:
  # cp  redis-2.8.16/redis.conf /etc/redis/redis.conf

  # vim /etc/init.d/redis
#!/bin/sh# chkconfig:   2345 90 10# description:  Redis is a persistent key-value database# redis    Startup script for redis processes# processname: redisredis_path="/usr/local/bin/redis-server"redis_conf="/etc/redis/redis.conf"redis_pid="/var/run/redis.pid"# Source function library.. /etc/rc.d/init.d/functions[ -x $redis_path ] || exit 0RETVAL=0prog="redis"# Start daemons.start() {if [ -e $redis_pid -a ! -z $redis_pid ];thenecho $prog" already running...."exit 1fiecho -n $"Starting $prog "# Single instance for all caches$redis_path $redis_confRETVAL=$?[ $RETVAL -eq 0 ] && {touch /var/lock/subsys/$progsuccess $"$prog"}echoreturn $RETVAL}# Stop daemons.stop() {echo -n $"Stopping $prog "killproc -d 10 $redis_pathecho[ $RETVAL = 0 ] && rm -f $redis_pid /var/lock/subsys/$progRETVAL=$?return $RETVAL}# See how we were called.case "$1" instart)start;;stop)stop;;status)status $progRETVAL=$?;;restart)stopstart;;condrestart)if test "x`pidof redis`" != x; thenstopstartfi;;*)echo $"Usage: $0 {start|stop|status|restart|condrestart}"exit 1esacexit $RETVAL

  chmod 755 /etc/init.d/redis

  将此脚本加入开机启动:

   chkconfig --level 2345 redis on

 

 

 

 

 

》 Windows安装:

  下载windows版redis(, 此版本目录 bin/release/redis-x.x.x.zip 下为windows版,解压, 改 redis.windows.conf 为 redis.conf)。

  运行 redis-server.exe, 默认使用 redis.conf 配置。

 

》搭配PHP:

  安装php_redis 扩展:

      通过phpinfo确定 php版本、compiler版本、 是ts还是nts, 下载对应扩展()

  解压文件并复制到php/ext,php.ini 添加 

    extension=php_igbinary.dll

    extension=php_redis.dll

  加载成功后, php中使用  $redis = new Redis();  即可初始化。 

 

   或者代码使用 predis 包(建议,更方便)。

 

转载于:https://www.cnblogs.com/antarctican/p/3959706.html

你可能感兴趣的文章
Windows7操作系统安装教程(图文)
查看>>
我的友情链接
查看>>
ASA 同端口级别如何互访
查看>>
net发送apns解决方案(iphone push)
查看>>
tomcat性能调优
查看>>
springmvc 不指定访问路径后缀都会匹配的
查看>>
Ubantu权限设置
查看>>
基于web的文件管理/目录结构展示(ufinder、elfinder)……的心路历程
查看>>
Linux下使用parted分区工具为大于2T硬盘分区
查看>>
Ubuntu下口袋妖怪终端主题安装
查看>>
重装GRUB
查看>>
cookie 和session 的区别详解
查看>>
windows编译hadoop 2.x Hadoop-eclipse-plugin插件
查看>>
我的友情链接
查看>>
[软件开发必备]计算机基础知识
查看>>
进度条(ProgressBar)——Mars Android开发视频之第一季第十七集(重)
查看>>
哈希表(散列表)总结
查看>>
我的友情链接
查看>>
ORACLE 异常错误处理
查看>>
[Quick-Cococs2DX] Quick-Cocos2D-X学习 (二) Quick-Cocos2d-X 核心framework 目录结构与功能介绍...
查看>>