Redis 安裝教程

2021-09-22 13:03:26 字數 2496 閱讀 7939

目錄

1、os x 系統安裝

2、啟動redis

3、測試客戶端連線

$ brew install redis
安裝完成

根據提示可以有兩種:

$ brew services start redis

$ redis-server /path/to/redis.conf (推薦)

在redis原始碼的util目錄下有乙個redis_init_script的檔案,將其拷貝至本地目錄

/usr/local/etc/init.d
修改redis_init_script為redis_6379,修改內容如下

#!/bin/sh

## ****** redis init.d script conceived to work on linux systems

# as it does use of the /proc filesystem.

### begin init info

# provides: redis_6379

# default-start: 2 3 4 5

# default-stop: 0 1 6

# short-description: redis data structure server

# description: redis data structure server. see

### end init info

redisport=6379

exec=/usr/local/bin/redis-server

cliexec=/usr/local/bin/redis-cli

pidfile=/usr/local/etc/redis/run/redis_$.pid # 配置pid檔案位置

conf="/usr/local/etc/redis/conf/$.conf" # 配置redis配置檔案

case "$1" in

start)

if [ -f $pidfile ]

then

echo "$pidfile exists, process is already running or crashed"

else

echo "starting redis server..."

$exec $conf

fi;;

stop)

if [ ! -f $pidfile ]

then

echo "$pidfile does not exist, process is not running"

else

pid=$(cat $pidfile)

echo "stopping ..."

$cliexec -p $redisport shutdown

while [ -x /proc/$ ]

doecho "waiting for redis to shutdown ..."

sleep 1

done

echo "redis stopped"

fi;;

*)echo "please use start or stop as first argument"

;;esac

修改配置檔案引數值

說明daemonize

yes使redis以守護程序執行

pidfile

/usr/local/etc/redis/conf/redis_6379.pid

設定redis的pid檔案位置,與初始化指令碼一致

port

設定redis監聽的埠號

dir/usr/local/var/db/redis/

設定持久化檔案存放位置

啟動

$ /usr/local/et/init.d/redis_6379 start        # 啟動

$ /usr/local/et/init.d/redis_6379 stop         # 停止

$ redis-cli shutdown                           # 使用命令列停止

$ redis-cli ping

pong

$ redis-cli

127.0.0.1:6379> echo hi

"hi"

127.0.0.1:6379> ping

$ redis-cli -h 127.0.0.1 -p 6379

127.0.0.1:6379>

Redis安裝教程

redis是比較流行的nosql資料庫之一,下面來記錄下redis的安裝過程 redis版本 redis 3.0.1 linux版本 red hat enterprise linux workstation release 7.0 maipo 解壓 tar zxvf redis 3.0.1.tar....

redis安裝教程

redis安裝教程 2 解壓,安裝 3 測試redis是否成功 4 將redis註冊成window服務 5 服務常用操作命令 6 配置遠端訪問 7 客戶端連線測試,大功告成 2 解壓,安裝 在redis的目錄下shift 滑鼠右鍵,開啟window命令。執行 redis server.exe red...

Redis安裝教程

redis是比較流行的nosql資料庫之中的乙個,以下來記錄下redis的安裝過程 redis版本號 redis 3.0.1 linux版本號 red hat enterprise linux workstation release 7.0 maipo 解壓 tar zxvf redis 3.0.1...