Redis는 오늘 서버에 설치되어 있습니다. 보안상의 이유로 redis-server에 액세스하려면 비밀번호를 설정하세요.
추천: "redis tutorial"
1. 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
위 내용은 Linux에서 Redis 액세스 비밀번호를 설정하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!