redis 서버 보안 설정

IT 2022. 10. 14. 03:01

//-------------------------------------
* redis server 설정 파일
redis.conf - linux 설정파일 - /etc/redis/redis.conf
redis.windows.conf - windows 설정파일

    - 윈도우에서는 설정파일 지정해야 설정파일 내용이 반영됨
> redis-server.exe redis.windows.conf


//-------------------------------------
    - 패스워드 설정
        - 설정 파일 수정해서 변경
requirepass MYPASS


    - 명령어로 설정
> redis-cli config set requirepass MYPASS
or
127.0.0.1 > config set requirepass MYPASS


    - 패스워드 사용해서 접속
redis-cli -h 127.0.0.1 -p 6379 -a MYPASS 


    - 패스워드 삭제
CONFIG SET requirepass ""


//-------------------------------------
* 접속 포트 수정

    - 설정 파일 수정해서 변경
port 6379

    - 접속 port 변경해서 서버 실행
redis-server --port 9001



//-------------------------------------
    로컬에서만 접속 가능하도록 설정 - 설정 파일 수정
bind 127.0.0.1 ::1
or
bind 127.0.0.1

 

 

//-----------------------------------------------------------------------------

// 참고

 

https://t-okk.tistory.com/163

https://ktdsoss.tistory.com/482

 

redis 패스워드 설정
https://www.tutorialspoint.com/redis/connection_auth.htm

- 보안설정 관련
https://redis.io/commands/auth/

 

 

반응형
Posted by codens