1. NodeJS
- Version >= 8.1
- More information you can check here
- Install
Open your terminal and run these commands
- $ curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash –
- $ sudo apt-get install -y nodejs
After that you can check install
- $ node -v
2. MongoDB
- Version >= 3.6
- More information you can check here
- Install
Open your terminal and run these commands
- $ sudo apt-key adv –keyserver hkp://keyserver.ubuntu.com:80 –recv 9DA31620334BD75D9DCB49F368818C72E52529D4
- $ echo “deb [ arch=amd64 ] https://repo.mongodb.org/apt/ubuntu trusty/mongodb-org/4.0 multiverse” | sudo tee /etc/apt/sources.list.d/mongodb-org-4.0.list
- $ sudo apt-get update
- $ sudo apt-get install -y mongodb-org
After that you can check install
- $ mongo -v
- More information you can check here
- Install
Open your terminal and run these commands
- $ sudo apt-get update
- $ sudo apt-get install libpng12-0
- $ sudo apt-get install libjpeg-dev
- $ sudo apt-get install ghostscript
- $ sudo apt-get install libtiff5-dev
- $ sudo apt-get install libfreetype6
- $ sudo apt-get install libfreetype6-dev
- $ tar xzvf GraphicsMagick-1.3.26.tar.gz
- $ cd GraphicsMagick-1.3.26
- $ ./configure
- $ make
- $ sudo make install
After that you can check install
- $ gm
3. Redis
- Install
Open your terminal and run these commands
- $ sudo add-apt-repository ppa:chris-lea/redis-server
- $ sudo apt-get update
- $ sudo apt-get install redis-server
After that you can check install
- $ redis-cli
4. Nginx
- Install
Open your terminal and run these commands
- $ sudo apt-get install nginx
After that you can check install
- $ nginx -f
5. PM2
- Install
Open your terminal and run these commands
- $ sudo npm install pm2 -g
After that you can check install
- $ pm2
6. Angular (you don’t need to install angular in your server, just use to build the app)
- Your will need NodeJS version > 9.x to setup angular app. Please check step 1 but insall with Node JS 9.x
- Run these commands to install the app
- $ npm install -g @angular/cli