1. すべての Redis プロセスを表示します(推奨: redis 入門チュートリアル)
ps aux|grep redis
2. redis を停止します
kill -9 20024 //根据pid来暴力停止redis进程,这里我只停止了其中一个redis
3. Redis クラスターとセンチネルをバックグラウンドで起動し、設定ファイルを指定します
redis
[app01@gcdc-wxtest01 ~]$ cd redis/bin/ [app01@gcdc-wxtest01 bin]$ ./redis-server ../conf/redis_7932.conf
を起動しますSentinel 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 中国語 Web サイトの他の関連記事を参照してください。