開啓redis-server報錯 # Creating Server TCP listening socket *:6379: bind: Address already in use--解決方法

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

源問題(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):

3496:C 25 Apr 00:56:48.717 # Warning: no config file specified, using the default config.   
In order to specify a config file use ./redis-server /path/to/redis.conf  
3496:M 25 Apr 00:56:48.719 * Increased maximum number of open files to 10032 (it was originally set to 1024).  
3496:M 25 Apr 00:56:48.733 # Creating Server TCP listening socket *:6379: bind: Address already in use
————————————————

最後一句提示:6379地址已經在使用(6379是redis默認的端口)

 

 

解決步驟

 

需要操作三步 :

 

①找到該進程;

找到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

我看的 是官網,啟動用的是  

src/redis-server
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章