우리는 많은 AWS EC2 Ubuntu 인스턴스 (14.04.4 LTS)에서 문제없이 redis-server를 실행했습니다. 테스트 서버를 회전시켜 Ubuntu 16.04.1 LTS로 업그레이드하려고 시도했지만 이제 redis가 작동하지 않습니다.
redis를 수동으로 시작하려고하면 다음과 같은 결과가 나타납니다.
~$ sudo service redis-server restart
Job for redis-server.service failed because the control process exited with error code. See "systemctl status redis-server.service" and "journalctl -xe" for details.
오류 정보 :
~$ systemctl status redis-server.service
● redis-server.service - Advanced key-value store
Loaded: loaded (/lib/systemd/system/redis-server.service; enabled; vendor preset: enabled)
Active: inactive (dead) (Result: exit-code) since Wed 2016-10-19 19:26:06 UTC; 25min ago
Docs: http://redis.io/documentation,
man:redis-server(1)
Process: 3730 ExecStart=/usr/bin/redis-server /etc/redis/redis.conf (code=exited, status=1/FAILURE)
Process: 3724 ExecStartPre=/bin/run-parts --verbose /etc/redis/redis-server.pre-up.d (code=exited, status=0/SUCCESS)
Oct 19 19:26:06 ip-x-y-z-w systemd[1]: redis-server.service: Control process exited, code=exited status=1
Oct 19 19:26:06 ip-x-y-z-w systemd[1]: Failed to start Advanced key-value store.
Oct 19 19:26:06 ip-x-y-z-w systemd[1]: redis-server.service: Unit entered failed state.
Oct 19 19:26:06 ip-x-y-z-w systemd[1]: redis-server.service: Failed with result 'exit-code'.
Oct 19 19:26:06 ip-x-y-z-w systemd[1]: redis-server.service: Service hold-off time over, scheduling restart.
Oct 19 19:26:06 ip-x-y-z-w systemd[1]: Stopped Advanced key-value store.
Oct 19 19:26:06 ip-x-y-z-w systemd[1]: redis-server.service: Start request repeated too quickly.
Oct 19 19:26:06 ip-x-y-z-w systemd[1]: Failed to start Advanced key-value store.
나는 다음을 시도했다.
- 서버를 다시 시작
- Redis 재시작이 포함 된 배포 스크립트를 실행하십시오.
sudo apt-get
redis-server를 제거하고 다시 설치 하는 데 사용/etc/redis/redis.conf
패키지에서 새 파일을 수락 하고 원래 파일을 한 번 유지 하면 설치가 두 번 완료되었습니다.
어떤 제안?