2016-07-06 98 views
-1

我試圖在AWS的EC2上的Ubuntu上設置node.js和mariaDB服務器。如何在ubuntu 14上使用nodejs 4.x安裝mariasql?

這裏是我的版本安裝的..

Ubuntu 14.04.3 LTS 
MariaDB 10.1.14 
NodeJS 4.4.7 

現在我想和node.js的和MariaDB的連接,所以我試圖安裝mariasql 用這個命令..

$sudo npm install mariasql 

但發生此錯誤..

======================================================================== 
gyp ERR! build error 
gyp ERR! stack Error: not found: make 
gyp ERR! stack  at getNotFoundError (/usr/lib/node_modules/npm/node_modules/which/which.js:14:12) 
gyp ERR! stack  at F (/usr/lib/node_modules/npm/node_modules/which/which.js:69:19) 
gyp ERR! stack  at E (/usr/lib/node_modules/npm/node_modules/which/which.js:81:29) 
gyp ERR! stack  at /usr/lib/node_modules/npm/node_modules/which/which.js:90:16 
gyp ERR! stack  at /usr/lib/node_modules/npm/node_modules/which/node_modules/isexe/index.js:44:5 
gyp ERR! stack  at /usr/lib/node_modules/npm/node_modules/which/node_modules/isexe/access.js:8:5 gyp ERR! stack  at FSReqWrap.oncomplete (fs.js:82:15) 
gyp ERR! System Linux 3.13.0-74-generic 
gyp ERR! command "/usr/bin/nodejs" "/usr/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild" 
gyp ERR! cwd /home/ubuntu/node_modules/mariasql 
gyp ERR! node -v v4.4.7 
gyp ERR! node-gyp -v v3.3.1 
gyp ERR! not ok 

npm ERR! Linux 3.13.0-74-generic 
npm ERR! argv "/usr/bin/nodejs" "/usr/bin/npm" "install" "mariasql" 
npm ERR! node v4.4.7 
npm ERR! npm v2.15.8 
npm ERR! code ELIFECYCLE 

npm ERR! [email protected] install: `node-gyp rebuild` 
npm ERR! Exit status 1 
npm ERR! 
npm ERR! Failed at the [email protected] install script 'node-gyp rebuild'. 
npm ERR! This is most likely a problem with the mariasql package, 
npm ERR! not with npm itself. 
npm ERR! Tell the author that this fails on your system: 
npm ERR!  node-gyp rebuild 
npm ERR! You can get information on how to open an issue for this project with: npm ERR!  npm bugs mariasql 
npm ERR! Or if that isn't available, you can get their info via: 
npm ERR! 
npm ERR!  npm owner ls mariasql 
npm ERR! There is likely additional logging output above. 

npm ERR! Please include the following file with any support request: 
npm ERR!  /home/ubuntu/npm-debug.log 

======================================================================== 

已經安裝了node-gyp。 我嘗試了舊版本的節點,它是0.10.x,但它沒有工作。 我有什麼問題嗎?

+0

你不應該使用sudo來安裝NPM包。 – jstice4all

回答

0

您是否已安裝build-essential

sudo apt-get install build-essential 

此外,你是否安裝了node-gyp作爲全球?

sudo npm install -g node-gyp 

這一點很重要,請參閱有-g標誌

+0

哦,上帝......非常感謝!你救了我的命!! – homerunsb