阿里云编译 redis 时 make test 报错

阿里云 安装 redismake test 报错无法继续。

报错日志中含有 Killing still running Redis server

最后在 github 上找到了答案。

开启 11111 端口即可。

1
2
3
iptables -I INPUT -p tcp --dport 11111 -j ACCEPT
/etc/init.d/iptables save
service iptables restart

继续 make test 正常。