1. 모든 Redis 프로세스 보기(권장: redis 입문 튜토리얼)
ps aux|grep redis
2. redis
kill -9 20024 //根据pid来暴力停止redis进程,这里我只停止了其中一个redis
3을 중지하고 구성을 지정합니다. file
redis 시작
[app01@gcdc-wxtest01 ~]$ cd redis/bin/ [app01@gcdc-wxtest01 bin]$ ./redis-server ../conf/redis_7932.conf
sentinel 시작, 두 방법 모두 백그라운드에서 시작할 수 있습니다.
//第一种启动有图形化界面,CTRL+C退出,进程依然存在 [app01@gcdc-wxtest01 bin]$ ./redis-sentinel ../conf/sentinel_27932.conf & //第二种启动看不到图形化界面,再按一次回车即可 [app01@gcdc-wxtest01 bin]$ nohup ./redis-sentinel ../conf/sentinel_27932.conf&
window 版本 redis-server --service-install redis.windows.conf //开机自启动 redis-server --service-start redis-server --service-stop
위 내용은 Redis 포트를 시작, 중지 및 보는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!