错误类型
[root@mycat56 redis-4.0.8]# ./utils/install_server.sh
Welcome to the redis service installer
This script will help you easily set up a running redis server
Please select the redis port for this instance: [6379]
Selecting default: 6379
Please select the redis config file name [/etc/redis/6379.conf]
Selected default - /etc/redis/6379.conf
Please select the redis log file name [/var/log/redis_6379.log]
Selected default - /var/log/redis_6379.log
Please select the data directory for this instance [/var/lib/redis/6379]
Selected default - /var/lib/redis/6379
Please select the redis executable path []
Mmmmm… it seems like you don’t have a redis executable. Did you run make install yet?
解决方法
进入到redis-4.0.12(这里进入到自己redis文件下)
然后输入:
make install redis (进行编译一下)
回车就解决了



在尝试使用`./utils/install_server.sh`安装redis时遇到问题,错误提示显示未找到redis可执行文件,可能是因为缺少`make install`步骤。解决方法是进入redis源码目录并执行`make`和`make install`。

824

被折叠的 条评论
为什么被折叠?



