您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關Linux下啟動redis的方法有哪些的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
進入redis根目錄,執行命令: #加上‘&’號使redis以后臺程序方式運行
nohup redis-server &
可以為redis服務啟動指定配置文件,例如配置為/etc/redis/6379.conf 進入redis根目錄,輸入命令:
./redis-server /etc/redis/6379.conf
#如果更改了端口,使用redis-cli
客戶端連接時,也需要指定端口,例如:
redis-cli -p 6380
啟動腳本 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服務器監聽的端口REDISPORT=6379#服務端所處位置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
根據啟動腳本,將修改好的配置文件復制到指定目錄下,用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
感謝各位的閱讀!關于“Linux下啟動redis的方法有哪些”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。