我通过在终端上键入以下命令在ubuntu上启动redis服务器:$ redis-server
结果是> http://paste.ubuntu.com/12688632/
aruns ~ $ redis-server
27851:C 05 Oct 15:16:17.955 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf
27851:M 05 Oct 15:16:17.957 # You requested maxclients of 10000 requiring at least 10032 max file descriptors.
27851:M 05 Oct 15:16:17.957 # Server can't set maximum open files to 10032 because of OS error: Operation not permitted.
27851:M 05 Oct 15:16:17.958 # Current maximum open files is 4096. maxclients has been reduced to 4064 to compensate for low ulimit. If you need higher maxclients increase 'ulimit -n'.
27851:M 05 Oct 15:16:17.958 # Creating Server TCP listening socket *:6379: bind: Address already in use
我如何解决此问题,它有任何手动或自动过程来解决此绑定(bind)。
最佳答案
$ ps aux | grep redis
找到运行它的端口。
MyUser 8821 0.0 0.0 2459704 596 ?? S 4:54PM 0:03.40 redis-server *:6379
然后手动关闭端口
$ kill -9 8821
重新运行Redis
$ redis-server
关于redis - ubuntu14.04中的redis-server:绑定(bind)地址已在使用中,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32947076/