我正在尝试按照本指南将Rails应用程序上传到hostgator: http://support.hostgator.com/articles/specialized-help/technical/how-do-i-start-using-ruby-on-rails 我在第5.6点遇到错误。当我这样做时:
rake generate_session_store
它说找不到gem'rack'并建议我运行bundle install。当我这样做时:
Gem::Installer:ExtensionBuildError: ERROR: Failed to build gem native extension.
/usr/bin/ruby extconf.rb
checking for mysql_ssl_set()... no
checking for rb_str_set_len()... no
checking for rb_thread_start_timer()... no
checking for mysql.h... no
checking for mysql/mysql.h... no
*** extconf.rb failed ***
Could not create Makefile due to some reason, probably lack of
necessary libraries and/or headers. Check the mkmf.log file for more
details. You may need configuration options.
Provided configuration options:
--with-opt-dir
--without-opt-dir
--with-opt-include
--without-opt-include=${opt-dir}/include
--with-opt-lib
--without-opt-lib=${opt-dir}/lib
--with-make-prog
--without-make-prog
--srcdir=.
--curdir
--ruby=/usr/bin/ruby
--with-mysql-config
--without-mysql-config
Gem files will remain installed in /home4/agtcorp/ruby/gems/gems/mysql-2.9.1 for inspection.
An error ocurred while installing mysql(2.9.1) and Bundler cannot continue.
Make sure that gem install mysql -v '2.9.1 succeeds before bundling.
我明显尝试了gem install mysql -v'2.9.1'。 我联系了Hostgator支持,一位Linux管理员对我说:
'我发现您的问题是由于声明的路径不正确。 Rakefile目前位于 / home4 / agtcorp / rails_apps / agtcorp2 /。也许如果你更新了 安装使用正确的路径,它会在中找到该文件 完整文件路径/ home4 / agtcorp / rails_apps / agtcorp2 / Rakefile。'
我不知道该怎么做。请帮忙!
答案 0 :(得分:10)
我认为你缺少“libmysqlclient-dev”,试试看:
sudo apt-get install mysql-server mysql-client libmysqlclient-dev
答案 1 :(得分:1)
正如Srdjan所说,HostGator的答案是错误的。问题不在于Rakefile的位置 - 问题在于没有可用的MySQL头。但这最终无关紧要,因为HostGator共享托管客户(如大多数共享托管客户)无法访问编译器。
可以为您编译本机宝石的唯一人是HostGator管理员。但是,它们通常不会,因为HostGator有一个预定义的(过时的,通常是不安全的)允许版本列表。
虽然可能在Hostgator上运行并运行非常简单的Rails应用程序需要付出很大的努力和精力,但是你可能会更喜欢像IaaS这样的平台Heroku如果您对典型的系统管理员职责不满意,或者如果您不熟悉AWS,Azure或Rackspace等PaaS平台。
答案 2 :(得分:0)
这个建议可能是错误的。这里的问题是mysql gem没有找到相关的MySQL C库。您通常需要使用--with-opt-dir和--with-opt-libs参数来提供它。
另一个问题可能是未安装MySQL开发库。这是Hostgator支持可能会帮助您的事情。