Linuxでredisアクセスパスワードを設定

1809 ワード

今日はサーバにredisがインストールされており、安全のためにredis-serverにアクセスするパスワードを設定します.
一、redisを検索する.confファイル
サーバにはredisがインストールされています.コマンドでredisのプロセスを表示します.
[root@lnp ~]# ps -aux|grep redis
root      7374  0.0  0.0 145312  7524 ?        Ssl  16:37   0:00 redis-server 192.168.17.105:6379
root     10692  0.0  0.0 112724   984 pts/7    S+   16:54   0:00 grep --color=auto redis

私たちのredis-serverのサービスアドレスは192.168.17.105で、ポートは6379で、対外アクセスの時に対応するIPとポートを指定する必要があります.
redis-cli -h 192.168.17.105 -p 6379

redisインストールディレクトリの検索
> whereis redis
redis: /usr/local/redis

ディレクトリの下にredisがインストールされ、プロファイルredis.confが表示されます.
> find /usr/local/redis/ -name redis.conf
/usr/local/redis/etc/redis.conf

プロファイルの変更:
vim redis.conf

プロファイルを変更するには、次の手順に従います.
# requirepass foobared
requirepass 123       123

最後に、プロファイルを再ロードします.
 redis-server /usr/local/redis/etc/redis.conf

二、接続テスト
パスワード-aでアクセス:
> redis-cli -h 192.168.17.105 -p 6379 -a 123

実行結果:
[root@lnp etc]# redis-cli
Could not connect to Redis at 127.0.0.1:6379: Connection refused
Could not connect to Redis at 127.0.0.1:6379: Connection refused
not connected> exit

[root@lnp etc]# redis-cli -h 192.168.17.105 -p 6379
192.168.17.105:6379> keys *
(error) NOAUTH Authentication required.
192.168.17.105:6379> exit
[root@lnp etc]# redis-cli -h 192.168.17.105 -p 6379 -a 123
Warning: Using a password with '-a' option on the command line interface may not be safe.
192.168.17.105:6379> keys *
(empty list or set)
192.168.17.105:6379> exit