ホームページ >データベース >Redis >Redisを再起動する方法

Redisを再起動する方法

藏色散人
藏色散人オリジナル
2019-07-06 14:03:4132789ブラウズ

Redisを再起動する方法

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

Start redis client

redis-cli 
127.0.0.1:6379>

apt-get または yum install を使用して redis がインストールされている場合は、次のコマンドを使用して redis を直接停止/起動/再起動できます

/etc/init.d/redis-server stop
/etc/init.d/redis-server start
/etc/init.d/redis-server restart

注: /etc/ を使用します。 init.d/redis-server start メソッドは redis を起動し、次にそのディレクトリで redis を起動します。その後、redis バックアップ ファイルがそのディレクトリに作成されます。

/user/bin/redis/ ディレクトリでコマンド /etc/init.d/redis-server start を入力すると、redis バックアップ ファイルは /user/bin/redis/dump.rdb にあります。

redis がソース コードを通じてインストールされている場合は、redis クライアント プログラムの shutdown コマンド redis-cli

redis-cli -h 127.0.0.1 -p 6379 shutdown
を使用して redis を再起動できます。

上記のどの方法でも redis を正常に停止できない場合は、次の方法を使用できます。究極の武器 kill -9

Redis 関連の知識の詳細については、Redis 使用法チュートリアル 列をご覧ください。

以上がRedisを再起動する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
前の記事:esとredisの違い次の記事:esとredisの違い