设为首页 收藏本站
查看: 1108|回复: 0

[经验分享] How to deploy Node.js Applications with pm2 and Nginx on Ubuntu

[复制链接]

尚未签到

发表于 2018-4-29 16:01:09 | 显示全部楼层 |阅读模式
  pm2 is a process manager for Node.js applications, it allows you to keep your apps alive and has a built-in load balancer. It's simple and powerful, you can always restart or>  In this tutorial, I will show you how to install and configure pm2 for the simple 'Express' application and then configure Nginx as a reverse proxy for the node application that is running under pm2.
  Prerequisites

  •   Ubuntu 16.04 - 64bit
  •   Root Privileges
Step 1 - Install Node.js LTS
  In this tutorial, we will start our project from scratch. First, we need Nodejs installed on the server. I will use the Nodejs LTS version 6.x which can be installed from the nodesource repository.
  Install the package 'python-software-properties' from the Ubuntu repository and then add the 'nodesource' Nodejs repository.
  sudo apt-get install -y python-software-properties
  curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
  Install the latest Nodejs LTS version.
  sudo apt-get install -y nodejs
  When the installation succeeded, check node and npm version.
  node -v
  npm -v
DSC0000.png

Step 2 - Generate Express Sample App
  I will use simple web application skeleton generated with a package named 'express-generator' for this example installation. Express-generator can be installed with the npm command.
  Install 'express-generator' with npm:
  npm install express-generator -g
  -g: install package inside the system
  We will run the application as a normal user, not a root or super user. So we need to create a new user first.
  Create a new user, I name mine 'yume':
  useradd -m -s /bin/bash yume
  passwd yume
  Login to the new user by using su:
  su - yume
  Next, generate a new simple web application with the express command:
  express hakase-app
  The command will create new project directory 'hakase-app'.
DSC0001.png

  Go to the project directory and install all dependencies needed by the app.
  cd hakase-app
  npm install
  Then test and start a new simple application with the command below:
  DEBUG=myapp:* npm start
  By default, our express application will run on port 3000. Now visit server IP address: 192.168.33.10:3000
DSC0002.png

  The simple web application skeleton is running on port 3000, under user 'yume'.
Step 3 - Install pm2
  pm2 is a node package and can be installed with the npm command. So let's install it with npm (with root privileges, when you are still logged in as user hakase, then run the command "exit" ro become root again):
  npm install pm2 -g
  Now we can use pm2 for our web application.
  Go to the app directory 'hakase-app':
  su - hakase
  cd ~/hakase-app/
  There you can find a file named 'package.json', display its content with the cat command.
  cat package.json
DSC0003.png

  You can see the 'start' line contains a command that is used by Nodejs to start the express application. This command we will use with the pm2 process manager.
  Run the express application with the pm2 command below:
  pm2 start ./bin/www
  Now you can see the results is below:
DSC0004.png

  Our express application is running under pm2 with name 'www',>0'. You can get more details about the application running under pm2 with the show option 'show nodeid|name'.
  pm2 show www
DSC0005.png

  If you like to see the log of our application, you can use the logs option. It's just access and error log and you can see the HTTP Status of the application.
  pm2 logs www
DSC0006.png

  You can see that our process is running. Now, let's enable it to start at boot time.
  pm2 startup systemd
  systemd: Ubuntu 16 is using systemd.
  You will get a message for running a command as root. Back to the root privileges with "exit" and then run that command.
  sudo env PATH=$PATH:/usr/bin /usr/lib/node_modules/pm2/bin/pm2 startup systemd -u yume --hp /home/yume
  It will generate the systemd configuration file for application startup. When you reboot your server, the application will automatically run on startup.
DSC0007.png

Step 4 - Install and Configure Nginx as a Reverse proxy
  In this tutorial, we will use Nginx as a reverse proxy for the node application. Nginx is available in the Ubuntu repository, install it with the apt command:
  sudo apt-get install -y nginx
  Next, go to the 'sites-available' directory and create a new virtual host configuration file.
  cd /etc/nginx/sites-available/
  vim hakase-app
  Paste configuration below:
upstream hakase-app {  
    # Nodejs app upstream
  
    server 127.0.0.1:3000;
  
    keepalive 64;
  
}
  

  
# Server on port 80
  
server {
  
    listen 80;
  
    server_name hakase-node.co;
  
    root /home/yume/hakase-app;
  

  
    location / {
  
        # Proxy_pass configuration
  
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  
        proxy_set_header Host $http_host;
  
        proxy_set_header X-NginX-Proxy true;
  
        proxy_http_version 1.1;
  
        proxy_set_header Upgrade $http_upgrade;
  
        proxy_set_header Connection "upgrade";
  
        proxy_max_temp_file_size 0;
  
        proxy_pass http://hakase-app/;
  
        proxy_redirect off;
  
        proxy_read_timeout 240s;
  
    }
  
}
  Save the file and exit vim.
  On the configuration:

  •   The node app is running with domain name 'hakase-node.co'.
  •   All traffic from nginx will be forwarded to the node app that is running on port 3000.
  Test Nginx configuration and make sure there is no error.
  nginx -t
  Start Nginx and enable it to start at boot time:
  systemctl start nginx
  systemctl enable nginx
Step 5 - Testing
  Open your web browser and visit the domain name (mine is):
  http://hakase-app.co
  You will see the express application is running under the nginx web server.
DSC0008.png

  Next, reboot your server, and make sure the node app is running at the boot time:
  pm2 save
  sudo reboot
  If you have logged in again to your server, check the node app process. Run the command below as 'yume' user.
  su - yume
  pm2 status www
DSC0009.png

  The Node Application is running under pm2 and Nginx as reverse proxy.
Links

  •   Ubuntu
  •   Node.js
  •   Nginx

运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其承担任何法律责任,如涉及侵犯版权等问题,请您及时通知我们,我们将立即处理,联系人Email:kefu@iyunv.com,QQ:1061981298 本贴地址:https://www.yunweiku.com/thread-453706-1-1.html 上篇帖子: Ubuntu 16.04 LAMP server tutorial with Apache 2.4, PHP 7 and MySQL 下篇帖子: ubuntu 安装lxml
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

扫码加入运维网微信交流群X

扫码加入运维网微信交流群

扫描二维码加入运维网微信交流群,最新一手资源尽在官方微信交流群!快快加入我们吧...

扫描微信二维码查看详情

客服E-mail:kefu@iyunv.com 客服QQ:1061981298


QQ群⑦:运维网交流群⑦ QQ群⑧:运维网交流群⑧ k8s群:运维网kubernetes交流群


提醒:禁止发布任何违反国家法律、法规的言论与图片等内容;本站内容均来自个人观点与网络等信息,非本站认同之观点.


本站大部分资源是网友从网上搜集分享而来,其版权均归原作者及其网站所有,我们尊重他人的合法权益,如有内容侵犯您的合法权益,请及时与我们联系进行核实删除!



合作伙伴: 青云cloud

快速回复 返回顶部 返回列表