Hi, I am getting some problem while installing mongrel on GoDaddy(fedora) server. Env is :: [root at ip-97-74-86-181 bin]# gem environment RubyGems Environment: - RUBYGEMS VERSION: 1.3.4 - RUBY VERSION: 1.8.6 (2008-03-03 patchlevel 114) [i386-linux] - INSTALLATION DIRECTORY: /usr/lib/ruby/gems/1.8 - RUBY EXECUTABLE: /usr/bin/ruby - EXECUTABLE DIRECTORY: /usr/bin - RUBYGEMS PLATFORMS: - ruby - x86-linux - GEM PATHS: - /usr/lib/ruby/gems/1.8 - /root/.gem/ruby/1.8 - GEM CONFIGURATION: - :update_sources => true - :verbose => true - :benchmark => false - :backtrace => false - :bulk_threshold => 1000 - REMOTE SOURCES: - http://gems.rubyforge.org/ While installing mongrel i am getting :: [root at ip-97-74-86-181 bin]# gem install mongrel Building native extensions. This could take a while... ERROR: Error installing mongrel: ERROR: Failed to build gem native extension. /usr/bin/ruby extconf.rb can''t find header files for ruby. Gem files will remain installed in /usr/lib/ruby/gems/1.8/gems/fastthread-1.0.7 for inspection. Results logged to /usr/lib/ruby/gems/1.8/gems/fastthread-1.0.7/ext/fastthread/gem_make.out [root at ip-97-74-86-181 bin]# And the gems list is:: [root at ip-97-74-86-181 bin]# gem list --local *** LOCAL GEMS *** actionmailer (2.3.2) actionpack (2.3.2) activemerchant (1.4.2) activerecord (2.3.2) activerecord-jdbc-adapter (0.9.1) activerecord-jdbcmysql-adapter (0.9.1) activeresource (2.3.2) activesupport (2.3.2) builder (2.1.2) calendar_date_select (1.15) cgi_multipart_eof_fix (2.5.0) daemons (1.0.10) gem_plugin (0.2.3) google-geocode (1.2.1) hoe (2.2.0) jdbc-mysql (5.0.4) money (2.1.3) rails (2.3.2) rake (0.8.7) rc-rest (2.2.1) rubyforge (1.0.3) rubygems-update (1.3.4) sources (0.0.1) ZenTest (4.1.1) Please let me know where i am wrong. Thanks in advance. Thanks Ritesh PAreek -- Posted via http://www.ruby-forum.com/.
Ritesh Pareek wrote:> Hi, > > I am getting some problem while installing mongrel on GoDaddy(fedora) > server. > > Env is :: > > [root at ip-97-74-86-181 bin]# gem environment > RubyGems Environment: > - RUBYGEMS VERSION: 1.3.4 > - RUBY VERSION: 1.8.6 (2008-03-03 patchlevel 114) [i386-linux] > - INSTALLATION DIRECTORY: /usr/lib/ruby/gems/1.8 > - RUBY EXECUTABLE: /usr/bin/ruby > - EXECUTABLE DIRECTORY: /usr/bin > - RUBYGEMS PLATFORMS: > - ruby > - x86-linux > - GEM PATHS: > - /usr/lib/ruby/gems/1.8 > - /root/.gem/ruby/1.8 > - GEM CONFIGURATION: > - :update_sources => true > - :verbose => true > - :benchmark => false > - :backtrace => false > - :bulk_threshold => 1000 > - REMOTE SOURCES: > - http://gems.rubyforge.org/ > > While installing mongrel i am getting :: > > [root at ip-97-74-86-181 bin]# gem install mongrel > Building native extensions. This could take a while... > ERROR: Error installing mongrel: > ERROR: Failed to build gem native extension. > > /usr/bin/ruby extconf.rb > can''t find header files for ruby. > > > Gem files will remain installed in > /usr/lib/ruby/gems/1.8/gems/fastthread-1.0.7 for inspection. > Results logged to > /usr/lib/ruby/gems/1.8/gems/fastthread-1.0.7/ext/fastthread/gem_make.out > [root at ip-97-74-86-181 bin]#> Please let me know where i am wrong. Thanks in advance.> Thanks> Ritesh PAreekHi, How do you install the ruby in your server, is it by using yum or from the source. If it is from yum, then install this package too, ruby-devel. The ruby you installed is without header files. To install the header files you have to install the above said package. Rgds TML -- Posted via http://www.ruby-forum.com/.