当gem install redis-namespace失败时的解决方法
在GitLab的bundle install过程中遇到了以下错误。因为在快速搜索后没有找到相关信息,所以我认为可能有其他人也会遇到这个问题,于是写下来备忘。环境是CentOS 6.5。
An error occurred while installing redis-namespace (1.4.1), and Bundler cannot continue.
Make sure that `gem install redis-namespace -v '1.4.1'` succeeds before bundling.
没有安装Redis
如果还没进去的话,请进去。
# yum install redis
Redis 未启动。
如果还没有启动,我们就启动它吧。
# service redis start
我认为最好将其设置为自动启动,这样做是可以的。
# chkconfig redis on