源问题
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
解决步骤
需要操作三步 :
①找到该进程;
找到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
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。