直接啟動
進入redis根目錄,執行命令:
#加上『&』號使redis以後台程式方式執行
./redis-server &
通過指定配置檔案啟動
可以為redis服務啟動指定配置檔案,例如配置為/etc/redis/6379.conf
進入redis根目錄,輸入命令:
./redis-server /etc/redis/6379.conf
#如果更改了埠,使用redis-cli
客戶端連線時,也需要指定埠,例如:
redis-cli -p 6380
使用redis啟動指令碼設定開機自啟動
啟動指令碼 redis_init_script 位於位於redis的 /utils/ 目錄下,redis_init_script指令碼**如下:
#!/bin/sh
## ****** redis init.d script conceived to work on linux systems
# as it does use of the /proc filesystem.
#redis伺服器監聽的埠
redisport=6379
#服務端所處位置
exec=/usr/local/bin/redis-server
#客戶端位置
cliexec=/usr/local/bin/redis-cli
#redis的pid檔案位置,需要修改
pidfile=/var/run/redis_$.pid
#redis的配置檔案位置,需將$修改為檔名
conf="/etc/redis/$.conf"
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
根據啟動指令碼,將修改好的配置檔案複製到指定目錄下,用root使用者進行操作:
mkdir /etc/redis
cp redis.conf /etc/redis/6379.conf
將啟動指令碼複製到/etc/init.d目錄下,本例將啟動指令碼命名為redisd(通常都以d結尾表示是後台自啟動服務)。
cp redis_init_script /etc/init.d/redisd
設定為開機自啟動,直接配置開啟自啟動 chkconfig redisd on 發現錯誤: service redisd does not support chkconfig
解決辦法,在啟動指令碼開頭新增如下注釋來修改執行級別:
#!/bin/sh
# chkconfig: 2345 90 10
再設定即可
#設定為開機自啟動伺服器
chkconfig redisd on
#開啟服務
service redisd start
#關閉服務
service redisd stop
redis啟動方式
tar zxvf redis 2.8.9.tar.gz cd redis 2.8.9 直接make 編譯 make 可使用root使用者執行 make install 將可執行檔案拷貝到 usr local bin目錄下。這樣就可以直接敲名字執行程式了。make install 加上 號使redis...
Redis啟動方式
直接執行bin redis server將以前端模式啟動。bin目錄是在 usr local redis bin redis serverssh命令視窗關閉則redis server程式結束,不推薦使用此方法 第一步 將redis原始碼包中的redis.conf配置檔案複製到 usr local r...
redis的安裝和啟動方式
redis簡介 redis is an open source bsd licensed in memory data structure store,used as a database,cache and message broker.it supports data structures su...