redis 之 配置使用RDM工具訪問

2022-07-28 09:42:28 字數 925 閱讀 5362

開啟redis.conf檔案進行修改配置

1、更改預設埠

2、更改後台程序方式

修改daemonize no 為daemonize yes

3、防火牆放行你設定的埠號 6379

4、注釋掉bind 127.0.0.1

5、設定redis連線密碼

6、按配置檔案啟動redis

如果未關閉

使用./redis-cli shutdown 關閉預設埠

在使用 ps -aux|grep redis 查詢pid

再使用 kill -9 殺死程序

再按配置檔案啟動redis

7、開啟rdm進行連線測試

Redis配置和使用

jedispoolconfig需要配置的幾個引數 最大連線數 redis.maxtotal 60 最大空閒連線數 redis.maxidle 20 初始化連線數 redis.minidle 5 當資源連線池的連線用盡後,呼叫者的最大等待時間 redis.maxwaitmillis 6000 定時對執...

springboot配置使用redis

如果redis密碼為空,則redis.password不設定 自動注入stringredistemplate autowired stringredistemplate stringredistemplate 常用操作 stringredistemplate.opsforvalue set test...

redis配置及使用

pom引入依賴 redis實現 org.springframework.boot groupid spring boot starter data redis artifactid dependency yml配置 redis 資料庫索引,預設0 database 伺服器ip位址 host 連線埠 ...