-
Notifications
You must be signed in to change notification settings - Fork 9
Installation manuelle des dépendances sous Debian
soyuka edited this page Mar 22, 2014
·
3 revisions
###Pré-requis
apt-get install git-core build-essential openssl libssl-dev whois python nginx php5-fpm unzip zip
###Installation de MongoDB
apt-key adv --keyserver keyserver.ubuntu.com --recv 7F0CEB10
echo 'deb http://downloads-distro.mongodb.org/repo/debian-sysvinit dist 10gen' | tee /etc/apt/sources.list.d/10gen.list
apt-get update
apt-get upgrade -y
#mongodb
mkdir /data
mkdir /data/db
# Dependecies
# whois = mkpasswd
apt-get install mongodb-10gen
Voir ici pour le problème lié aux kimsufi si l'installation échoue
###Installation de nodejs
git clone https://github.com/joyent/node.git
cd node
git tag #sélectionnez la dernière version stable
git checkout v0.10.26
./configure --openssl-libpath=/usr/lib/ssl
make
make install
Vérifiez :
node -v
$-: v0.10.26
npm -v