Intro
安裝
$ sudo apt install redis-server
That's all
進階設定
開啟驗證
新增密碼設定 /etc/redis/redis.conf
:
requirepass your-password-here
Redis驗證僅使用密碼,不需要帳號
Bind IP驗證
/etc/redis.conf
:
bind 192.168.1.100 10.0.0.1
不支援子網遮罩,不需要就註解掉,自行設防火牆。
網頁開發知識 | Web-Dev Blog
$ sudo apt install redis-server
That's all
新增密碼設定 /etc/redis/redis.conf
:
requirepass your-password-here
Redis驗證僅使用密碼,不需要帳號
/etc/redis.conf
:
bind 192.168.1.100 10.0.0.1
不支援子網遮罩,不需要就註解掉,自行設防火牆。