购买一台阿里云ECS服务器 #

https://www.aliyun.com

SSH连接到服务器 #

安装ubuntu系统 #

升级操作系统

apt-get update

安装node #

apt-get install npm 
npm install n
n stable

安装mongodb #

apt-get install mongodb

安装git #

apt-get install git

安装pm2 #

强大的进程管理器,进程异常退出时pm2会尝试重启

npm install pm2 -g

用pm2启动node #


命令 用途
pm2 start app.js --name "crawl" 启动应用
pm2 list 查看所有应用
pm2 restart crawl 重启应用
pm2 stop crawl 停止应用
pm2 delete crawl 删除应用

安装nginx #

Nginx是一个高性能的HTTP反向代理服务器

apt-get install nginx

nginx命令 #

配置nginx反向代理和负载均衡 #

upstream crawl{
    ip_hash;
    server 127.0.0.1:3000 weight=10;
    server 127.0.0.1:4000 weight=1;
}

server {
        listen 80;
        server_name www.zfpx.com;

        location / {
           proxy_pass http://crawl;
        }
}