开启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
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值