• mac os x install redis-3.2.9


    下载、解压、重命名并且编译安装Redis
    ~ wget http://download.redis.io/releases/redis-3.2.9.tar.gz
    ~ tar xzf redis-3.2.9.tar.gz
    ~ mv redis-3.2.9 redis
    ~ cd redis
    ~ make
    ~ make test
    ~ make install
    配置文件redis.conf
    redis解压目录里有一个配置文件redis.conf ,编辑此配置文件,找到 dir ./ 这一行[247行]。redis会将内存中的数据写入文件中,而此配置就是指定数据文件保存的路径。
    我本机指定的目录:
    dir ./
    修改为
    dir /Users/houxiurong/Software/redis_data/
    编辑过后,将配置文件移动到 /usr/local/etc 目录下
    ~ sudo mv redis.conf /usr/local/etc/
    启动Redis
    终端输入:
    ~ /usr/local/bin/redis-server /usr/local/etc/redis.conf
    服务启动成功画面:
    houxiurong-MacBook-Pro:src houxiurong$ /usr/local/bin/redis-server /usr/local/etc/redis.conf
    6508:M 01 Jul 18:21:33.662 * Increased maximum number of open files to 10032 (it was originally set to 256).
    _._
    _.-``__ ''-._
    _.-`` `. `_. ''-._ Redis 3.2.9 (00000000/0) 64 bit
    .-`` .-```. ```/ _.,_ ''-._
    ( ' , .-` | `, ) Running in standalone mode
    |`-._`-...-` __...-.``-._|'` _.-'| Port: 6379
    | `-._ `._ / _.-' | PID: 6508
    `-._ `-._ `-./ _.-' _.-'
    |`-._`-._ `-.__.-' _.-'_.-'|
    | `-._`-._ _.-'_.-' | http://redis.io
    `-._ `-._`-.__.-'_.-' _.-'
    |`-._`-._ `-.__.-' _.-'_.-'|
    | `-._`-._ _.-'_.-' |
    `-._ `-._`-.__.-'_.-' _.-'
    `-._ `-.__.-' _.-'
    `-._ _.-'
    `-.__.-'

    6508:M 01 Jul 18:21:33.664 # Server started, Redis version 3.2.9
    6508:M 01 Jul 18:21:33.664 * DB loaded from disk: 0.000 seconds
    6508:M 01 Jul 18:21:33.664 * The server is now ready to accept connections on port 6379

    测试连通性
    ~ cd /usr/local/bin
    ~ ./redis-cli
    127.0.0.1:6379> set me houxiurong
    OK
    127.0.0.1:6379> get me
    "houxiurong"
    设置开机自动启动redis server
    新建plist文件
    ~ sudo vi /Library/LaunchDaemons/io.redis.redis-server.plist
    文件内容如下
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
    <key>Label</key>
    <string>io.redis.redis-server</string>
    <key>ProgramArguments</key>
    <array>
    <string>/usr/local/bin/redis-server</string>
    <string>/usr/local/etc/redis.conf</string>
    </array>
    <key>RunAtLoad</key>
    <true/>
    </dict>
    </plist>
    使用launchctl设置开机自动启动
    ~ sudo launchctl load /Library/LaunchDaemons/io.redis.redis-server.plist
    使用launchctl启动redis server
    ~ sudo launchctl start io.redis.redis-server
    使用launchctl停止redis server
    ~ sudo launchctl stop io.redis.redis-server

  • 相关阅读:
    [js对象]JS入门之Date对象
    从Microsoft SqlServer 2005中返回有一定顺序的记录集
    [js对象]JS入门之Global对象
    [JS.IntelliSense]VS2008(Orcas) So Cool
    即插即用插件式框架的程序集处理遐想(TypeFinder)
    [C#3.0体验]Orcas中内置的LinQ,XLinQ[DLinQ]扩展方法
    [ASP.NET入门]页面生命周期
    [IE]IE6&IE7运行于同一个系统中
    [js对象]JS入门之Boolean&Object对象
    RSS(Really Simple Syndication)常用标签
  • 原文地址:https://www.cnblogs.com/xrhou12326/p/7103106.html
Copyright © 2020-2023  润新知