最新文章專題視頻專題問答1問答10問答100問答1000問答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
問答文章1 問答文章501 問答文章1001 問答文章1501 問答文章2001 問答文章2501 問答文章3001 問答文章3501 問答文章4001 問答文章4501 問答文章5001 問答文章5501 問答文章6001 問答文章6501 問答文章7001 問答文章7501 問答文章8001 問答文章8501 問答文章9001 問答文章9501
當(dāng)前位置: 首頁 - 科技 - 知識百科 - 正文

怎么啟動redis

來源:懂視網(wǎng) 責(zé)編:小采 時間:2020-11-09 06:57:40
文檔

怎么啟動redis

怎么啟動redis:redis的啟動方式1.直接啟動 進(jìn)入redis根目錄,執(zhí)行命令: #加上&號使redis以后臺程序方式運(yùn)行 ./redis-server &或者修改redis.conf參數(shù)daemonize yes 2.通過指定配置文件啟動 可以為redis服務(wù)啟動指定配置文件,例如配置為/etc/red
推薦度:
導(dǎo)讀怎么啟動redis:redis的啟動方式1.直接啟動 進(jìn)入redis根目錄,執(zhí)行命令: #加上&號使redis以后臺程序方式運(yùn)行 ./redis-server &或者修改redis.conf參數(shù)daemonize yes 2.通過指定配置文件啟動 可以為redis服務(wù)啟動指定配置文件,例如配置為/etc/red

redis的啟動方式

1.直接啟動

進(jìn)入redis根目錄,執(zhí)行命令:

 #加上‘&’號使redis以后臺程序方式運(yùn)行
./redis-server &

或者

修改redis.conf參數(shù)

daemonize yes

2.通過指定配置文件啟動

可以為redis服務(wù)啟動指定配置文件,例如配置為/etc/redis/6379.conf

進(jìn)入redis根目錄,輸入命令:

./redis-server /etc/redis/6379.conf
 #如果更改了端口,使用`redis-cli`客戶端連接時,也需要指定端口,例如:
redis-cli -p 6380

3.使用redis啟動腳本設(shè)置開機(jī)自啟動

啟動腳本 redis_init_script 位于位于Redis的 /utils/ 目錄下,redis_init_script腳本代碼如下:

#!/bin/sh
#
# Simple Redis init.d script conceived to work on Linux systems
# as it does use of the /proc filesystem.
 
#redis服務(wù)器監(jiān)聽的端口
REDISPORT=6379
 
#服務(wù)端所處位置
EXEC=/usr/local/bin/redis-server
 
#客戶端位置
CLIEXEC=/usr/local/bin/redis-cli
 
#redis的PID文件位置,需要修改
PIDFILE=/var/run/redis_${REDISPORT}.pid
 
#redis的配置文件位置,需將${REDISPORT}修改為文件名
CONF="/etc/redis/${REDISPORT}.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/${PID} ]
 do
 echo "Waiting for Redis to shutdown ..."
 sleep 1
 done
 echo "Redis stopped"
 fi
 ;;
 *)
 echo "Please use start or stop as first argument"
 ;;
esac

根據(jù)啟動腳本,將修改好的配置文件復(fù)制到指定目錄下,用root用戶進(jìn)行操作:

mkdir /etc/redis
cp redis.conf /etc/redis/6379.conf

將啟動腳本復(fù)制到/etc/init.d目錄下,本例將啟動腳本命名為redisd(通常都以d結(jié)尾表示是后臺自啟動服務(wù))。

cp redis_init_script /etc/init.d/redisd

設(shè)置為開機(jī)自啟動,直接配置開啟自啟動 chkconfig redisd on 發(fā)現(xiàn)錯誤: service redisd does not support chkconfig

解決辦法,在啟動腳本開頭添加如下注釋來修改運(yùn)行級別:

#!/bin/sh
# chkconfig: 2345 90 10

再設(shè)置即可

#設(shè)置為開機(jī)自啟動服務(wù)器
chkconfig redisd on
#打開服務(wù)
service redisd start
#關(guān)閉服務(wù)
service redisd stop

更多Redis相關(guān)知識,請訪問Redis使用教程欄目!

聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

怎么啟動redis

怎么啟動redis:redis的啟動方式1.直接啟動 進(jìn)入redis根目錄,執(zhí)行命令: #加上&號使redis以后臺程序方式運(yùn)行 ./redis-server &或者修改redis.conf參數(shù)daemonize yes 2.通過指定配置文件啟動 可以為redis服務(wù)啟動指定配置文件,例如配置為/etc/red
推薦度:
標(biāo)簽: 開啟 怎么啟動 啟動
  • 熱門焦點(diǎn)

最新推薦

猜你喜歡

熱門推薦

專題
Top