redis遠(yuǎn)程連接不上的解決辦法
問(wèn)題描述:
redis遠(yuǎn)程服務(wù)端運(yùn)行在192.168.3.90計(jì)算機(jī)上,客戶端計(jì)算機(jī)(ip:192.168.3.110)通過(guò)redsi-cli.exe客戶端工具連接時(shí),沒(méi)有反應(yīng),連接不上。
如圖所示:

解決步驟:
步驟一:注釋掉redis.window.conf文件中的bind屬性設(shè)置。
如圖所示:


步驟二:把protected-mode屬性設(shè)置no

重啟redis即可遠(yuǎn)程連接。
如圖所示:



確定啟動(dòng)成功,查看所有keys

清空所有keys

注意事項(xiàng):
不能直接雙擊redis安裝目錄下bin目錄下的redis-server.exe啟動(dòng)redis服務(wù)端,否則會(huì)導(dǎo)致無(wú)法通過(guò)遠(yuǎn)程客戶端進(jìn)行操作。
如果所示,通過(guò)雙擊redis-server.exe命令啟動(dòng)redis后,然后執(zhí)行keys查看所有鍵時(shí)報(bào)錯(cuò),



報(bào)錯(cuò)如下異常:
(error) DENIED Redis is running in protected mode because protected mode is enabled,
no bind address was specified, no authentication password is requested to clients.
In this mode connections are only accepted from the loopback interface.
If you want to connect from external computers to Redis you may adopt one of the following solutions:
1) Just disable protected mode sending the command 'CONFIG SET protected-mode no' from the loopback interface by connecting to Redis
from the same host the server is running, however MAKE SURE Redis is not publicly accessible from internet if you do so.
Use CONFIG REWRITE to make this change permanent. 2) Alternatively you can just disable the protected mode by editing the Redis configuration file,
and setting the protected mode option to 'no', and then restarting the server.
3) If you started the server manually just for testing, restart it with the '--protected-mode no' option.
4) Setup a bind address or an authentication password.
NOTE: You only need to do one of the above things in order for the server to start accepting connections from the outside.
原因分析:從啟動(dòng)成功界面分析,這種方式的啟動(dòng)讀取的配置文件可能不是redis.windows.conf文件,故之前設(shè)置的內(nèi)容沒(méi)有生效。
所以啟動(dòng)redis時(shí),通過(guò)進(jìn)入redis安裝目錄下的bin目錄,然后執(zhí)行
redis-server redis.windows.conf
命令啟動(dòng)名。
另外redis-cli客戶端連接redis服務(wù)端命令如下
redis-cli -h 192.168.3.90 -p 6379
- -h 選擇指定服務(wù)端ip
- -p 選擇指定端口。
到此這篇關(guān)于redis遠(yuǎn)程連接不上的解決辦法的文章就介紹到這了,更多相關(guān)redis遠(yuǎn)程連接不上內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
相關(guān)文章
Redis list 類型學(xué)習(xí)筆記與總結(jié)
這篇文章主要介紹了Redis list 類型學(xué)習(xí)筆記與總結(jié),本文著重講解了關(guān)于List的一些常用方法,比如lpush 方法、lrange 方法、rpush 方法、linsert 方法、 lset 方法等,需要的朋友可以參考下2015-06-06
Redis主從復(fù)制與讀寫分離的實(shí)現(xiàn)
Redis在作為緩存的時(shí)候,隨著項(xiàng)目訪問(wèn)量的增加,對(duì)Redis服務(wù)器的操作也越加頻繁,雖然Redis讀寫速度都很快,但是一定程度上也會(huì)造成一定的延時(shí),本文主要介紹了Redis主從復(fù)制與讀寫分離的實(shí)現(xiàn),具有一定的參考價(jià)值,感興趣的可以了解一下2023-12-12
redis keys與scan命令的區(qū)別說(shuō)明
這篇文章主要介紹了redis keys與scan命令的區(qū)別說(shuō)明,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過(guò)來(lái)看看吧2021-03-03
Redis實(shí)現(xiàn)訂單自動(dòng)過(guò)期功能的示例代碼
這篇文章主要介紹了Redis實(shí)現(xiàn)訂單自動(dòng)過(guò)期功能的示例代碼,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧2021-05-05
Redis設(shè)置key的過(guò)期時(shí)間
本文主要介紹了Redis設(shè)置key的過(guò)期時(shí)間,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧2023-01-01

