0

我一直在关注这个 railscast,通过橡胶将我的 rails 应用程序部署到 Amazon EC2:http ://railscasts.com/episodes/347-rubber-and-amazon-ec2

我到了在终端中输入这个的地步:

cap deploy:cold

然后我收到以下错误:

 ** [out :: web01.foo.com] rake aborted!
 ** [out :: web01.foo.com] 
 ** [out :: web01.foo.com] Could not open library 'libcurl': libcurl: cannot open shared object file: No such file or directory.
 ** [out :: web01.foo.com] Could not open library 'libcurl.so': libcurl.so: cannot open shared object file: No such file or directory
 ** [out :: web01.foo.com] 
 ** [out :: web01.foo.com] 
 ** [out :: web01.foo.com] (See full trace by running task with --trace)
 ** [out :: web01.foo.com] 
    command finished in 4322ms
failed: "/bin/bash -l -c 'cd /mnt/sample_app-production/releases/20120905210248 && bundle exec rake RAILS_ENV=production RAILS_GROUPS=assets assets:precompile'" on web01.foo.com

我认为问题与“libcurl”有关。我该如何安装?

4

2 回答 2

2

我在 Ubuntu Lucid 服务器上安装graphiti时遇到了同样的问题。

我没有找到我遇到的错误的根源,但是做一个简单的符号链接是一个足够好的解决方法。

cd /usr/lib
ln -s libcurl.so.4 libcurl.so
于 2012-09-24T12:12:17.213 回答
0

http://curl.haxx.se/download.html

???

于 2012-09-05T21:41:42.507 回答