redis多例項配置

2021-07-14 03:01:24 字數 1339 閱讀 9430

如果需要使用redis多例項。可以直接在安裝目錄中找到/etc/redis.conf檔案,並且將其複製成redis6380.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 when daemonized.

daemonize yes

# when running daemonized, redis writes a pid file

in /var/run/redis.pid by

# default. you can specify a custom pid file location here.

pidfile /var/run/redis/redis6380.pid

# accept connections on the specified port, default

is6379.

# if

port

0is specified redis will not listen on a tcp socket.

port

6380

# specify the log file name. also the empty string can be used to

force

# redis to log on the standard output. note that if you use standard

# output for logging but daemonize, logs will be sent to /dev/null

logfile /var/log/redis/redis6380.log

# the working directory.

# # the db will be written inside this directory, with the filename specified

# above using the 'dbfilename' configuration directive.

# #

# note that you must specify a directory here, not a file name.

dir /var/lib/redis6380/

儲存之後,使用使用redis-server /etc/redis6380.conf就能啟動了伺服器。

windows下配置多redis例項

由於多個專案需要使用redis服務,所以需要在1臺windows伺服器上部署多個redis例項並將例項安裝成windows服務,下面介紹步驟,部署3個例項 1 將redis.windows service.conf複製改名為 redis.windows service 6380.conf redis...

redis多例項執行

有的時候會遇到一種情況,在一台伺服器,乙個redis例項會出現不夠用的情況 那麼這時我們可以建立多個例項,以滿足不同的業務需求和功能需求 1.首先建立乙個執行redis的普通使用者 useradd s sbin nologin g zxredis zxredis 2.然後給相應的目錄授權 chown...

redis的多例項

redis的多例項功能,可以在乙個機器上,啟動多個redis服務端 vim redis.conf 寫入以下內容 不要加上注釋 port 6379 bind 0.0.0.0 daemonize no 後台執行redis pidfile data 6379 redis.pid 將redis程序的id寫入...