ㅋㅋㅋ 명령 /Restart redis
redis-server # 启动redis服务端 [1709] 28 Feb 06:45:08.346 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf [1709] 28 Feb 06:45:08.348 * Max number of open files set to 10032 _._ _.-``__ ''-._ _.-`` `. `_. ''-._ Redis 2.8.4 (00000000/0) 64 bit .-`` .-```. ```\/ _.,_ ''-._ ( ' , .-` | `, ) Running in stand alone mode |`-._`-...-` __...-.``-._|'` _.-'| Port: 6379 | `-._ `._ / _.-' | PID: 1709 `-._ `-._ `-./ _.-' _.-' |`-._`-._ `-.__.-' _.-'_.-'| | `-._`-._ _.-'_.-' | http://redis.io `-._ `-._`-.__.-'_.-' _.-' |`-._`-._ `-.__.-' _.-'_.-'| | `-._`-._ _.-'_.-' | `-._ `-._`-.__.-'_.-' _.-' `-._ `-.__.-' _.-' `-._ _.-' `-.__.-' [1709] 28 Feb 06:45:08.349 # Server started, Redis version 2.8.4 [1709] 28 Feb 06:45:08.349 # WARNING overcommit_memory is set to 0! Background save may fail under low memory condition. To fix this issue add 'vm.overcommit_memory = 1' to /etc/sysctl.conf and then reboot or run the command 'sysctl vm.overcommit_memory=1' for this to take effect. [1709] 28 Feb 06:45:08.349 * The server is now ready to accept connections on port 6379
/user/bin/redis/ 디렉터리에 /etc/init.d/redis-server start 명령을 입력하면 redis 백업 파일은 /user/bin/redis/dump.rdb에 있습니다. 소스 코드 redis를 통해 설치되면 redis 클라이언트 프로그램 redis-cli
redis-cli 127.0.0.1:6379>
의 종료 명령을 통해 Redis를 다시 시작할 수 있습니다. 위의 방법 중 어느 것도 성공적으로 Redis를 중지하지 않으면 궁극적인 무기 kill -9
를 사용할 수 있습니다. 관련 지식은
Redis 사용법 튜토리얼칼럼을 방문해주세요!
위 내용은 Redis를 다시 시작하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!