Redis Tutorial 칼럼에서는 redisqueue의 기록 검색 기능 구현 방법을 소개하겠습니다. 필요한 친구들에게 도움이 되길 바랍니다!
CentOS Redis를 시스템 서비스로 구성
redis.service 만들기
cd /usr/lib/systemd/system touch redis.service
콘텐츠 편집
[Unit] Description=Redis Server After=network.target [Service] PIDFile=/var/run/redis_6379.pid ExecStart=/usr/local/bin/redis-server /etc/redis.conf ExecStop=/usr/local/bin/redis-cli -a passwd shutdown ExecReload=/bin/kill -s HUP $MAINPID [Install] WantedBy=mutli-user.target
systemctl을 다시 로드하고 서비스 시작
systemctl daemon-reload systemctl start redis.service
상태 보기
systemctl status redis.service
Redis 닫기
systemctl stop redis.service
자동으로 시작 Enable
systemctl enable redis.service
전원을 켠 후 자동으로 시작할지 여부
systemctl is-enabled redis.service
위 내용은 CentOS에서 Redis를 시스템 서비스로 구성하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!