next 项目部署到服务器 pm2 进程守护
一、 npm run export
导出文件上传到 CDN
在项目中执行 npm run export
后导出 outCDN
文件上传到 CDN
// scripts/upload.js
const fs = require('fs');
const path = require('path');
const OSS = require('ali-oss');
const filePath = path.join(__dirname,'../outCDN');
const excludeFiles = ['index.html']
const client = new OSS({
region: 'oss-cn-shenzhen',
accessKeyId: '',
accessKeySecret: '',
bucket: ''
});
// 遍历文件夹中所有文件
async function uploadFile(filePath){
//根据文件路径读取文件,返回文件列表
fs.readdir(filePath,async function(err,files){
if(err){
console.warn(err)
}else{
//遍历读取到的文件列表
files.forEach(async function(filename){
//获取当前文件的绝对路径
const filedir = path.join(filePath,filename);
//根据文件路径获取文件信息,返回一个 fs.Stats 对象
fs.stat(filedir,async function(eror,stats){
if(eror){
console.warn('获取文件 stats 失败');
}else{
const isFile = stats.isFile();//是文件
const isDir = stats.isDirectory();//是文件夹
if(!excludeFiles.includes(filename) && isFile){
const fileKey = `${filedir.split('outCDN/').pop()}`
try {
// object 表示上传到 OSS 的 Object 名称,localfile 表示本地文件或者文件路径
let data = await client.put(fileKey,filedir);
console.error('upload success: %j', data);
} catch(err) {
console.error('upload failed: %j', err);
}
}
if(isDir){
uploadFile(filedir);//递归,如果是文件夹,就继续遍历该文件夹下面的文件
}
}
})
});
}
});
}
uploadFile(filePath)
二、处理 next build
后的文件
执行 next build
以后,把 .next
、 package.json
、 server.js
、 next.config.js
、 ecosystem.json
拷贝到一个文件夹统一管理,最后部署这个文件夹下的内容即可
// scripts/copyFiles.js
const fs = require( 'fs' ),
stat = fs.stat;
const path = require('path')
const includeFiles = ['package.json','server.js','next.config.js','ecosystem.json']
/*
* 复制目录中的所有文件包括子目录
* @param{ String } 需要复制的目录
* @param{ String } 复制到指定的目录
*/
const readDir = function( src, dst ){
// 读取目录中的所有文件/目录
fs.readdir( src, function( err, paths ){
if( err ){
throw err;
}
paths.forEach(function( filename ){
var _src = src + '/' + filename,
_dst = dst + '/' + filename,
readable, writable;
stat( _src, function( err, st ){
if( err ){
throw err;
}
// 判断是否为文件
if( st.isFile()){
// 创建读取流
readable = fs.createReadStream( _src );
// 创建写入流
writable = fs.createWriteStream( _dst );
// 通过管道来传输流
readable.pipe( writable );
}
// 如果是目录则递归调用自身
else if( st.isDirectory()){
copyDir( _src, _dst, readDir );
}
});
});
});
};
// 在复制目录前需要判断该目录是否存在,不存在需要先创建目录
const copyDir = function( src, dst, callback ){
fs.exists( dst, function( exists ){
// 已存在
if( exists ){
callback( src, dst );
}
// 不存在
else{
fs.mkdir( dst, function(){
callback( src, dst );
});
}
});
};
const copyFile = ()=>{
includeFiles.forEach(filename=>{
fs.createReadStream(path.join(__dirname,'../'+filename)).pipe(fs.createWriteStream(path.join(__dirname,'../deployBuildFiles',filename)))
console.log('拷贝完成!')
})
}
// 复制目录
copyDir( '.next', 'deployBuildFiles/.next', readDir);
// 拷贝文件
copyFile()
三、pm2 之 ecosystem 部署项目
PM2
部署应用流程,通过 pm2
的配置文件来部署
http://pm2.keymetrics.io/docs/usage/deployment/
3.1 配置部署脚本文件
在项目根目录添加 pm2
的部署脚本文件 ecosystem.json
部署文档详情: http://pm2.keymetrics.io/docs/usage/deployment/
{
"apps": [
{
"name": "goodsapp", //pm2 运行的应用名称
"script": "server.js",//服务启动入口
"env":{
"COMON_VARIABLE": "true"
},
"env_production": {
"NODE_ENV": "production", //env
"HOST": "localhost"
}
}
],
"deploy": {
// 最后这样使用 pm2 deploy ecosystem.json production
"production": {
"user": "user_00",// 服务器用户名
"host": ['192.68.1.201'],//服务器 ip 地址 可写多个
"ref": "origin/master",//从指定分支拉取代码
"repo": "http://p.yesdat.com/diffusion/49/goodsh.git",
"path": "/data/poetry/testDir/prev-goods.yesdat.com", //上传本地目录到服务器
"ssh_options": "StrictHostKeyChecking=no",
"post-deploy": "npm install --registry=https://registry.npm.taobao.org && npm install && pm2 startOrRestart ecosystem.json --env production",//部署脚本
"env": {
"NODE_ENV": "production"
}
}
}
}
或者简单 scp
上传到服务器
scp -P36000 -r deployBuildFiles/.next user_00@192.168.1.201:/home/data/services/goods-prev.yesdat.com/
更多详情 http://blog.poetries.top/2018/12/03/linux-scp
3.2 部署 Nginx 配置规则
在 nginx
安装目录下的 vhost
中新建一个 xx-3000.conf
的配置文件
- 在 Nginx 目录
/etc/nginx
下执行sudo /usr/sbin/nginx -t
检测配置文件是否成功
upstream goodsapp { // website 项目的目录名称
server 127.0.0.1:3000; // 服务器上的本地启动入口,端口对应项目中 server.js 中的端口
}
// 配置 server
server {
listen 80;
server_name prev-goods.yesdat.com; //指向的域名
location / {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forward-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_set_header X-Nginx-Proxy true;
proxy_pass http://goodsapp; // 请求将会转发到 goodsapp 的 node 服务下
proxy_redirect off;
}
// 处理静态资源
location ~* ^.+\.(jpg|jpeg|gif|png|ico|css|js|pdf|txt) {
root /data/goodsapp/static; //请求转发到静态资源路径
}
}
更多配置参考 https://github.com/poetries/poetry-configure/blob/master/nginx.conf
3.3 本地项目根执行的命令
pm2 deploy ecosystem.json goodsapp setup
初始化pm2 deploy ecosystem.json goodsapp
部署
3.4 部署到阿里云
第一步:配置 Nginx
查看 Nginx
安装路径 which nginx
注意 /etc/nginx
和 /usr/local/nginx/
下的 nginx
区别
# 切换到 Nginx 当前目录下
/usr/local/nginx/conf/
# 创建 vhost
mkdir vhost
# 创建 goodsapp-3001.conf,内容如下
server {
listen 8080;
server_name 39.108.74.36;# 在 ifconfig 的拿到的 ip 地址或者是公网 ip,这里填公网 ip,如果是域名阿里云需要备案才可以正常访问
location / {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forward-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_set_header X-Nginx-Proxy true;
proxy_pass http://127.0.0.1:3001;# 把 172.16.0.223:8080 的请求转发代理到本机的 3001 端口
}
}
# 在/usr/local/nginx/sbin/nginx/conf/nginx.conf 下 include 创建的 vhost 文件
include /etc/nginx/vhost/*.conf; # 在文件最后 include 配置文件
# 在/usr/local/nginx/sbin/nginx/conf/nginx.conf 下执行检测配置文件
sudo /usr/local/nginx/sbin/nginx -t
# 重新加载 Nginx 配置
/usr/local/nginx/sbin/nginx -s reload
一些注意事项
server_name
可以是域名,也可以是ip
。ip
可以是本地,也可以是公网ip
本机 ip
公网 ip
- 阿里云防火墙规则设置
这里访问了 8080
需要在阿里云后台配置一下
第二步:pm2 部署到服务器
首先在服务端全局安装 pm2
、 npm
node
并且建立软链
npm i pm2 -g
重要:请注意:
一定要做建立软链这步,否则出现如下问题
建立 npm
软链
建立 node
软链
建立 pm2
软链
正式部署
- 根目录执行
pm2 deploy deploy-app.json production setup
初始化服务端环境 - 根目录执行
pm2 deploy deploy-app.json production --force
输入服务端用户 root 密码,部署即可
来到 /home/production
目录查看上传的文件
{
"apps": [
{
"name": "goodsapp-prev",
"script": "server.js",# 根目录 server.js 文件
"env":{
"COMON_VARIABLE": "true"
},
"env_production": {
"NODE_ENV": "production"
}
}
],
"deploy": {
"production": {
"user": "root",//用户名
"host": ["39.108.74.36"], //公网 ip
"ref": "origin/master",
"repo": "https://gitee.com/Poetries1/goods-prev.yesdat.com.git",
"path": "/home/production",
"ssh_options": ["StrictHostKeyChecking=no", "PasswordAuthentication=no"],
"post-deploy": "npm install && pm2 startOrRestart deploy-app.json --env production",
"pre-deploy-local": "echo 'Deploy Done!'",
"env": {
"NODE_ENV": "production"
}
}
}
}
更多配置信息 http://pm2.keymetrics.io/docs/usage/deployment/
pm2 list
查看启动的项目
pm2 logs
查看启动日志
然后在浏览器访问 http://39.108.74.36:8080
(http://ip:端口)即可看到,到此部署结束
3.5 部署更多参考
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论