分布式部署文件 redis 部署

2022-05-29 16:30:19 字數 895 閱讀 1099

protocol

servername

ipport

used by

tcpredis

192.168.100.20

6379

jumpserver

# 公升級系統

$ yum upgrade -y

# 安裝 redis 服務

$ yum install -y install epel-release

$ yum install -y redis

# 設定防火牆, 開放 6379 埠 給 jumpserver 訪問

$ firewall-cmd --permanent --add-rich-rule="rule family="ipv4" source address="192.168.100.30" port protocol="tcp" port="6379" accept"

$ firewall-cmd --reload

# 設定 redis 自啟

$ systemctl enable redis

# 修改 redis 配置檔案

$ vi /etc/redis.conf

...# bind 127.0.0.1 # 注釋這行, 新增如下內容

bind 0.0.0.0

requirepass weakpassword # redis 連線密碼

maxmemory-policy allkeys-lru # 清理策略, 優先移除最近未使用的key

...

# 啟動 redis

$ systemctl start redis

# redis 的主從設定請參考其官方, 之後會補上

分布式部署文件 環境說明

protocol server name port used by tcpjumpserver 80,8080 nginx,coco,guacamole tcpcoco 2222,5000 nginx tcpguacamole 8081 nginx tcpdb 3306 jumpserver tcp...

分布式部署

一 分布式架構和部署 1 如何進行分布式部署 2 系統拆分後,模組之間如何相互呼叫 3 如何進行統一的會話 session 管理 4 如何實現單點登入 5 如何保證一致性更新 6 如何規劃和處理分布式事務 7 如何對重要服務實現ha 二 高併發和web層的效能優化 1 高併發的處理 2 nginx的...

solr分布式部署

solr 分布式部署 solr複製模式,是一種在分布式環境下用於同步主從伺服器的一種實現方式,因之前提到的基於rsync的solr不同方式部署成本過高,被solr1.4版本所替換,取而代之的就是基於http協議的索引檔案傳輸機制,該方式部署簡單,只需配置乙個檔案即可。以下講解具體操作步驟 步驟分主伺...