[unit]
description=the redis-server process manager
documentation=
after=network.target
[service]
type=forking
execstart=/root/redis-5.0.7/src/redis-server /root/redis-5.0.7/redis.conf
#有密碼則需要在cli後面加 -a "密碼"
ex程式設計客棧ecstop=/root/redis-5.0.7/src/redis-cli shutdown
[install]
wantedby=multi-user.target
1.先輸入
vi /lib/systemd/system/redis.service
把上述配置複製進去,儲存退出
2.設定開機自啟動
systemctl enable redis
3.使用命令
#開啟服務
systemctl start redis
#停止服務
systemctl stop redis
程式設計客棧#檢視執行狀態
system status redis
總結本文標題: linux 開機自啟動redis服務的方法
本文位址: /shujuku/redis/298453.html
redis開機自啟動
一.啟動redis 1.redis server 這種方式啟動,當按ctrl c退出時會關閉啟動 2.redis server 加上 號使redis以後台程式方式執行 二.檢測redis程序後台是否存在的三種方法 1.ps ef grep redis 檢視redis程序 2.netstat lntp...
redis開機自啟動
url 修改redis.conf,開啟後台執行選項 by default redis does not run as a daemon.use yes if you need it.note that redis will write a pid file in var run redis.pid ...
redis開機自啟動指令碼 linux
目前redis放在home下的資料夾中,寫乙個指令碼,待系統啟動的過程中,去啟動該指令碼。指令碼 redis.sh bin sh home juepei downloads redis 3.0.0 src redis server home juepei downloads redis 3.0.0 ...