2016-04-07 15 views
0

Meteor 1.3のアップグレードが完了するまで、すべて正常に機能しました。今では、私は新しいUbuntu 14.04 LTSの液滴を一からやって再構成しようとしましたが、成功しませんでした。ここに私がやっていることがあります:Meteor 1.3へのアップグレード後、Ubuntu 14.04 LTSにアプリケーションをデプロイできません。

NodeJS 0.10.xとMongoがインストールされました。

curl -sL https://deb.nodesource.com/setup_0.10 | sudo bash - 
apt-get install nodejs 
apt-get install mongodb-server 

内蔵アプリ。

meteor build --architecture os.linux.x86_64 

サーバにアップロードして/home/productionにアップロードし、依存関係をインストールしようとしました。

cd /home/production/bundle/programs/server && npm install 

そしてここでは、我々は以下のとおりです。0.10.43と2.14.22:

> [email protected] install 
/home/production/bundle/programs/server/node_modules/fibers 
> node build.js || nodejs build.js 

gyp ERR! build error 
gyp ERR! stack Error: not found: make 
gyp ERR! stack  at F (/usr/local/lib/node_modules/npm/node_modules/which/which.js:43:28) 
gyp ERR! stack  at E (/usr/local/lib/node_modules/npm/node_modules/which/which.js:46:29) 
gyp ERR! stack  at /usr/local/lib/node_modules/npm/node_modules/which/which.js:57:16 
gyp ERR! stack  at Object.oncomplete (evalmachine.<anonymous>:108:15) 
gyp ERR! System Linux 3.16.0-0.bpo.4-amd64 
gyp ERR! command "node" "/usr/local/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild" "--release" 
gyp ERR! cwd /home/production/bundle/programs/server/node_modules/fibers 
gyp ERR! node -v v0.10.43 
gyp ERR! node-gyp -v v1.0.1 
gyp ERR! not ok 
Build failed 
gyp ERR! build error 
gyp ERR! stack Error: not found: make 
gyp ERR! stack  at F (/usr/local/lib/node_modules/npm/node_modules/which/which.js:43:28) 
gyp ERR! stack  at E (/usr/local/lib/node_modules/npm/node_modules/which/which.js:46:29) 
gyp ERR! stack  at /usr/local/lib/node_modules/npm/node_modules/which/which.js:57:16 
gyp ERR! stack  at Object.oncomplete (evalmachine.<anonymous>:108:15) 
gyp ERR! System Linux 3.16.0-0.bpo.4-amd64 
gyp ERR! command "node" "/usr/local/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild" "--release" 
gyp ERR! cwd /home/production/bundle/programs/server/node_modules/fibers 
gyp ERR! node -v v0.10.43 
gyp ERR! node-gyp -v v1.0.1 
gyp ERR! not ok 
Build failed 

npm ERR! [email protected] install: `node build.js || nodejs build.js` 
npm ERR! Exit status 1 
npm ERR! 
npm ERR! Failed at the [email protected] install script. 
npm ERR! This is most likely a problem with the fibers package, 
npm ERR! not with npm itself. 
npm ERR! Tell the author that this fails on your system: 
npm ERR!  node build.js || nodejs build.js 
npm ERR! You can get their info via: 
npm ERR!  npm owner ls fibers 
npm ERR! There is likely additional logging output above. 
npm ERR! System Linux 3.16.0-0.bpo.4-amd64 
npm ERR! command "/usr/local/bin/node" "/usr/local/bin/npm" "install" 
npm ERR! cwd /home/production/bundle/programs/server 
npm ERR! node -v v0.10.43 
npm ERR! npm -v 1.4.29 
npm ERR! code ELIFECYCLE 
npm ERR! not ok code 0 

私も正確なNodeJSとNPMの "流星" のバージョンを使用しようとしました。失敗。それ以外に何ができますか?

答えて

1

だから、シンプル:

sudo apt-get install build-essential 

私はそれがmakeなし1.3アップデートの前に仕事ができるか見当がつかない。おそらく1.3でMeteor自体で何かが変わったかもしれません。

+1

確かに分かりませんが、以前は 'meteor build'がpackage.jsonにプラットフォーム固有のプリコンパイル済み'ファイバー 'tarballを指定していたので、再コンパイルする必要はありませんでした。なぜそれが変わった、私は知らない。 – aedm

関連する問題