web-dev-qa-db-fra.com

Une erreur s'est produite lors de l'installation robuste

Suite à ce tutoriel [ link ] pour installer gitlab sur un serveur dédié. J'ai besoin de :

Sudo -u git -H bundle install --deployment --without development test postgres aws

Mais une erreur s'est produite lors de l'installation robuste:

Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native extension.

    /usr/local/bin/Ruby extconf.rb
checking for cmake... no
ERROR: CMake is required to build Rugged.
*** 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/local/bin/Ruby


    Gem files will remain installed in /home/git/gitlab/vendor/bundle/Ruby/2.0.0/gems/rugged-0.21.2 for inspection.
    Results logged to /home/git/gitlab/vendor/bundle/Ruby/2.0.0/gems/rugged-0.21.2/ext/rugged/gem_make.out
    An error occurred while installing rugged (0.21.2), and Bundler cannot continue.
    Make sure that `gem install rugged -v '0.21.2'` succeeds before bundling.

J'ai donc installé robuste -> J'ai installé CMake & config-pkg:

/home/git/gitlab$ Sudo gem install rugged
Building native extensions.  This could take a while...
Successfully installed rugged-0.21.2
Parsing documentation for rugged-0.21.2
unable to convert "\xC0" from ASCII-8BIT to UTF-8 for lib/rugged/rugged.so, skipping
1 gem installed

Mais cela ne change rien:

Errno::EACCES: Permission denied - /home/git/gitlab/vendor/bundle/Ruby/2.0.0/gems/rugged-0.21.2/LICENSE
An error occurred while installing rugged (0.21.2), and Bundler cannot continue.
Make sure that `gem install rugged -v '0.21.2'` succeeds before bundling.

Une idée ?

44
plieb

Tout d'abord, essayez d'installer cmake:

Sudo apt-get install cmake

Ensuite, répétez la commande:

Sudo -u git -H bundle install --deployment --without development test postgres aws
58
xoska74

Pour OSX si vous utilisez homebrew:

brew install cmake 
bundle install
69
Joe

Pour moi, gem se plaignait de la dépendance manquante de pkg-config, alors j'ai fait:

Sudo apt-get install pkg-config

et alors

Sudo gem install rugged -v '0.22.2'

après cela, je reviens à mon ancienne version de gitlab et réexécute le script pour la mise à niveau.

Mon ancienne version de gitlab était 6.9.2 et la version mise à jour 8.0.5

4

Mac OSX 10.6 ou version ultérieure, veuillez vous référer à cette URL:

http://www.cmake.org/download/

0
railsfreak

Peut résoudre ce problème uniquement de cette façon:

télécharger depuis https://cmake.org/download/ . Extrayez le fichier tar téléchargé puis:

cd $CMAKE_DOWNLOAD_PATH
./configure
make
make install

Et après ces étapes, j'ai pu exécuter avec succès:

gem install rugged -v '0.26.0'
0
Siarhei Manko