英文:
Redis starts, is ready to accept connections, but commands does not works
问题
我在Ubuntu上使用redis-server启动了Redis:
127.0.0.1:6379> 在最后一行没有显示,而且没有任何命令有效。如何修复这个问题?
我尝试进入redis-cli,执行ping命令,但不起作用:
英文:
I started redis on Ubuntu using redis-server:
127.0.0.1:6379> doesn't appear on the last line and no command works. How to fix this?
I tryed to enter redis-cli, ping. Not working:
答案1
得分: 0
- 检查 Redis 服务器是否正在运行收集:
ps axufwww | grep 'redis'
- 测试与正在运行的 Redis 连接:
echo "ping" | redis-cli
英文:
- check if Redis server is running collecting:
ps axufwww | grep 'redis'
- test the connection to Redis running:
echo "ping" | redis-cli
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论