Installing Nodejs
Https://cnodejs.org/topic/53a92af6c3ee0b58203258fe
Installing MongoDB
Http://www.cnblogs.com/zj1111184556/p/3599828.html
Installing Redis
http://blog.fens.me/linux-redis-install/
Http://www.linuxidc.com/Linux/2014-05/101544.htm
Install Nodejs under Linux (Ubuntu) before installing Nodejs, if g++ and Libssl-dev are not installed, install it first, installation method is as follows: $ sudo apt-get install g++$ sudo apt-get install Libssl-dev Next, you can download the installation Nodejs, the current stable version of node. JS 0.6.18, below is the installation steps: $ wget http://nodejs.org/dist/v0.8.16/ node-v0.8.16.tar.gz$ tar zxvf node-v0.8.16.tar.gz$./configure$ make && make install when installed, enter: $ node-vv0.8.1 under console 6 You can see the installed Nodejs version number. After everything is ready, follow the convention to a helloworld.$ node
Installing Nodejs+mongodb+redis in Ubuntu