最近更新时间:2018-07-21
原文链接:https://nideshop.com/docs/deployment-centos.html
本文档为微信小程序商城NideShop项目的安装部署教程,欢迎star
- NideShop商城api服务:https://github.com/tumobi/nideshop
- NideShop微信小程序商城:https://github.com/tumobi/nideshop-mini-program
- NideShop后台管理系统:https://github.com/tumobi/nideshop-admin
环境介绍
阿里云 ECS CentOS 7.4 64 云服务器ECS优惠券领取链接
推荐配置:4CPU、8G内存、4M宽带、40G系统盘
推荐配置适合正式上线使用,你也可根据自身需要更改配置,如果图片多或是图片加载慢则推荐使用云存储和CDN。
最低配置:1CPU、1G内存、1M宽带、20G系统盘
最低配置适合开发和测试阶段使用,正式环境不推荐使用。
更新系统和安装 git、vim、curl
yum update -yyum install curl git -y通过 nvm 安装 Node.js
- 安装 nvm
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.5/install.sh | bash验证安装是否成功
source ~/.bashrcnvm --version看到输出版本信息 0.33.5 表示安装成功
- 查看最新 8.x 版本 Node.js 版本并安装
nvm ls-remotenvm install v8.2.1node -v看到输出版本信息 v8.2.1 表示安装成功
必须安装 Node.js 8.x 以上版本
安装 MySQL 5.7
yum install https://dev.mysql.com/get/mysql57-community-release-el7-11.noarch.rpm -yyum install mysql-community-server -y启动 mysql
systemctl start mysqldsystemctl enable mysqld查找 root 的初始密码
cat /var/log/mysqld.log | grep password更改密码
mysql_secure_installation回车后输入查找到的密码,然后按照料提示更改密码
注意新密码必须包含特殊字符、数字、和大小写字母且不得少于8位,否则更改失败。
验证 mysql 是否安装成功
mysql -uroot -p 回车后输入查找到的密码,登录成功后的样子

开始运行 NideShop
- 下载 NideShop 的源码
mkdir /var/wwwcd /var/wwwgit clone https://github.com/tumobi/nideshop- 全局安装 ThinkJS 命令
npm install -g think-clithinkjs -v- 安装依赖
cd /var/www/nideshopnpm install - 创建数据库并导入数据
mysql -uroot -p -e "create database nideshop character set utf8mb4" mysql -uroot -p nideshop /var/www/nideshop/nideshop.sql- 修改 Nideshop 的数据库配置
vim src/common/config/database.js修改后
const mysql = require('think-model-mysql');module.exports = { handle: mysql, database: 'nideshop', prefix: 'nideshop_', encoding: 'utf8mb4', host: '127.0.0.1', port: '3306', user: 'root', password: '你的密码', dateStrings: true};注意 encoding,prefix 的值
编译项目
npm run compile以生产模式启动
node production.js打开另一个终端验证是否启动成功
curl -I http://127.0.0.1:8360/输出 HTTP/1.1 200 OK,则表示成功
** Ctrl + C 停止运行**
为防止后面操作出现[Error] Error: Address already in use, port:8360. 的错误,一定要记得Ctrl + C停止运行,并确保curl -I http://127.0.0.1:8360/不能访问
使用 PM2 管理服务
- 安装配置 pm2
npm install -g pm2修改项目根目录下的 pm2.json 为:
vim pm2.json修改后的内容如下 :
{ "apps": [{ "name": "nideshop", "script": "production.js", "cwd": "/var/www/nideshop", "exec_mode": "fork", "max_memory_restart": "256M", "autorestart": true, "node_args": [], "args": [], "env": { } }]}如果服务器配置较高,可适当调整 max_memory_restart 和instances的值
- 启动pm2
pm2 start pm2.json成功启动

再次验证是否可以访问
curl -I http://127.0.0.1:8360/使用 nginx 做反向代理
yum install nginx -ysystemctl start nginx.servicesystemctl enable nginx.service测试本地是否可以正常访问
curl -I localhost 修改nginx配置
cp /etc/nginx/nginx.conf /etc/nginx/nginx.conf.bakvim /etc/nginx/nginx.conf内容如下(只需更改 server 里面的内容)
user nginx;worker_processes auto;error_log /var/log/nginx/error.log;pid /run/nginx.pid;# Load dynamic modules. See /usr/share/nginx/README.dynamic.include /usr/share/nginx/modules/*.conf;events { worker_connections 1024;}http { log_format main '$remote_addr - $remote_user [$time_local] "$request" ' '$status $body_bytes_sent "$http_referer" ' '"$http_user_agent" "$http_x_forwarded_for"'; access_log /var/log/nginx/access.log main; sendfile on; tcp_nopush on; tcp_nodelay on; keepalive_timeout 65; types_hash_max_size 2048; include /etc/nginx/mime.types; default_type application/octet-stream; # Load modular configuration files from the /etc/nginx/conf.d directory. # See http://nginx.org/en/docs/ngx_core_module.html#include # for more information. include /etc/nginx/conf.d/*.conf; server { listen 80; server_name nideshop.com www.nideshop.com; # 改成你自己的域名 root /var/www/nideshop/www; set $node_port 8360; index index.js index.html index.htm; if ( -f $request_filename/index.html ){ rewrite (.*) $1/index.html break; } if ( !-f $request_filename ){ rewrite (.*) /index.js; } location = /index.js { proxy_http_version 1.1; proxy_set_header X-Real-IP $remote_addr; 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_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; proxy_pass http://127.0.0.1:$node_port$request_uri; proxy_redirect off; } location ~ /static/ { etag on; expires max; } }}- 重新启动nginx并验证nginx是否还可以正常访问
nginx -t systemctl restart nginx.servicecurl http://127.0.0.1/如果返回的是下图的json数据则表示nginx反向代理配置成功

注:阿里云默认外网不能访问80/443端口,请更改实例的安全组配置,配置教程:https://help.aliyun.com/document_detail/25475.html?spm=5176.doc25475.3.3.ZAx4Uo
配置https访问
- 安装certbot
yum install epel-release -yyum install certbot-nginx -ycertbot --nginx如果 certbot -nginx 这步出错,则执行
pip install --upgrade --force-reinstall 'requests==2.6.0' urllib3重新执行 certbot --nginx
- 配置自动更新证书
certbot renew --dry-run详情文档请查看:https://certbot.eff.org/#ubuntuxenial-nginx
- 测试浏览器使用https形式访问是否成功

修改NideShop微信小程序客户端的配置
微信小程序商城客户端GitHub: https://github.com/tumobi/nideshop-mini-program
打开文件config/api.js,修改NewApiRootUrl为自己的域名
var NewApiRootUrl = 'https://www.nideshop.com/api/';注意https和后面的api/不能少
到此部署成功。如有问题请加QQ群:497145766













