生产中的 redis 和 resque
我想让 resque 后台处理在我的 centos 服务器上用于 Rails 3 应用程序的生产中。
然后我想用 bluepill 监控 redis 和 resque 。
在生产环境中为 resque 安装 redis 的最佳方法是什么?还有人获得 redis 和 resque 的 .pill 文件吗?
谢谢 瑞克
I want to get resque background processing working in production on my centos server for a rails 3 application.
I then want to monitor redis and resque with bluepill.
What is the best way to install redis in production for resque and also has anyone get a .pill file for redis and resque ?
Thanks
Rick
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Linode 库有一篇关于在 CentOS 5 中安装 Redis 的好文章,以及Resque 的 Github 页面 是 Resque 的优秀资源。
Redis Bluepill:
Bluepill 的语法相当简单,我将把 .pill 留给 Resque 供您尝试:)
The Linode Library has a nice article about installing Redis in CentOS 5, and Resque's Github page is an excellent resource for Resque.
Redis Bluepill:
Bluepill's syntax is fairly straight-forward and I'll leave the .pill for Resque for you to try :)
我对 linode Redis 文章的一些注释:
https:// /www.linode.com/docs/databases/redis/redis-on-centos-5/
获取redis时:
您可以直接链接到最新稳定版本的 redis:
<代码>
wget http://download.redis.io/redis-stable.tar.gz
tar xvzf redis-stable.tar.gz
cd redis 稳定版
制作
mkdir /var/run/redis
chown redis:redis /var/run/redis
init.d
脚本以及redis.conf
中的新目录文件:/var/run/redis/redis.pid
而不是/var/run/redis.pid
A few of my notes on the linode Redis article:
https://www.linode.com/docs/databases/redis/redis-on-centos-5/
When wgetting redis:
You could link directly to the latest stable version of redis:
wget http://download.redis.io/redis-stable.tar.gz
tar xvzf redis-stable.tar.gz
cd redis-stable
make
mkdir /var/run/redis
chown redis:redis /var/run/redis
init.d
script as well as theredis.conf
file:/var/run/redis/redis.pid
as opposed to/var/run/redis.pid