KnowHow/Server Apps 썸네일형 리스트형 Redis 재시작시 Redis Service Stop::(error) NOAUTH Authentication required 와 같은 에러가 발생 할 경우 아래와 같이 redis ( 레디스 ) 를 재시작 했을때 NoAuth error 이 날 때가 있습니다. /etc/init.d/redis_6379 restart Stopping ... (error) NOAUTH Authentication required. Waiting for Redis to shutdown ... Waiting for Redis to shutdown ... Waiting for Redis to shutdown ... 간단히 말하면 conf 파일에는 requirepass 가 셋팅되어 있지만 재시작 스크립트에는 적용이 되지 않았을때 발생하는 현상 인데요. 해결방법은 설정 파일에 shutdown 명령어와 함께 -a {passowrd} 를 적어 주시면 됩니다. 아래는 제 경우 입니다. config.. CentOS 에서 Redis 설치하기 간단히 CentOS 에서 yum 을 이용하지 않고 Redis 를 설치하는 방법입니다. ( 공홈에도 나와 있는 방법 ) URL : https://redis.io/topics/quickstart 1. Redis 컴파일하기 우선 아래의 명령어로 Stable 버전을 받으신 후 압축을 푸시기 바랍니다. 그리고 make 로 컴파일을 하려 하면... 약 99%의 확률로 에러가 납니다. $ wget http://download.redis.io/redis-stable.tar.gz $ tar xvzf redis-stable.tar.gz $ cd redis-stable $ make 일단 gcc 에러는 yum install gcc 로 해결이 가능합니다. $ yum install gcc 그리고 설치 후 make 시 아래와 같이.. 이전 1 다음