redis-serverエラーメッセージを開く#Creating Server TCP listening socket*:6379:bind:Address already in use--解決方法

3686 ワード

ソース問題(1)


binディレクトリでredisサーバを開きます.完全なヒントは次のとおりです.
Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf
7178:M 11 Dec 00:51:04.350 * Increased maximum number of open files to 10032 (it was originally set to 1024).


解決:
#        
[root@centos224]# ulimit -a  
  
#  “open files”    
[root@centos224]# ulimit -n 10032  
  
#          
[root@centos224]# vi /etc/security/limits.conf

ソースの問題(2):
  1. 3496:C 25 Apr 00:56:48.717 # Warning: no config file specified, using the default config.   
  2. In order to specify a config file use ./redis-server /path/to/redis.conf  
  3. 3496:M 25 Apr 00:56:48.719 * Increased maximum number of open files to 10032 (it was originally set to 1024).  
  4. 3496:M 25 Apr 00:56:48.733 # Creating Server TCP listening socket *:6379: bind: Address already in use
  5. のヒント:6379アドレスはすでに されています(6379はredisのデフォルトのポートです)



    3:

    ① ;

    redis-server (Process Status)

    ps -ef | grep -i redis 

    root      3086     1  0 Apr24 ?        00:00:07 ./bin/redis-server *:6379        
    root      3531  3467  0 01:00 pts/0    00:00:00 grep -i redis 

    プロセス 3086はredisサーバです


    ②プロセスを す。 killコマンドの コマンドを :
    kill -9 3086 
    ③その redisサーバを します。 コマンドを :
    redis-server