遠端伺服器,redis 安裝在/opt下redis-4.0.10
修改配置檔案redis.conf配置檔案:(注釋掉bind:127.0.0.1)和修改保護模式為no
修改另乙個配置檔案:
vim redis-6379.conf,修改保護模式:
啟動redis服務
redis-server redis-6379.conf
進入redis 客戶端
#從資料庫中獲取資料
name=r.get('
name
').decode('
utf-8')
print(name)
#coding=utf8
"""author:dengjiyun
"""import
redis
pool=redis.connectionpool(host='
182.61.24.122
',port=6379)
r =redis.redis(connection_pool=pool)
#set 集合
res=r.sadd('
url_set
','url1')
#當res=1,表示要新增的url不在 url_set 中 當res=0 時表示url已經存在url_set 從而實現去重的功能
ifres:
print('
新新增成功!
') #
此處可以讓把該url直接讓爬蟲進行爬取
else
:
print('
該url已經存在
')
redis設定允許遠端訪問
若遠端主機需要訪問redis伺服器,可以修改 etc redis redis.conf配置檔案 sudo vim etc redis redis.conf bind 127.0.0.1 bind欄位預設為 bind 127.0.0.1 這樣只能本機訪問redis 若允許遠端主機訪問,可注釋掉bind...
Redis遠端訪問
1.redis繫結的主機位址是本地 需要進入配置檔案進行修改 root vm 0 16 centos vim usr local redis redis.conf 注釋掉bind 127.0 0.1 bind 127.0.0.1 或者 bind 0.0.0.0 更改protected mode ye...
配置Redis 遠端訪問及授權設定
如果想要redis能遠端可以訪問,那麼需要將redis.conf裡面的bind 127.0.0.1這一行注釋掉,還有,找到protected mode這行,將yes改為no.若需要設定授權,那麼找到requirepass 將其後的值改為自已的密碼.儲存後,重新啟動redis server.先看看re...