服务器 准备工具 依次安装即可
nginx
安装nginx https://www.runoob.com/linux/nginx-install-setup.html
配置全局nginx命令 https://www.cnblogs.com/NTWang/p/13066602.html
git
yum -y install git
nvm node版本管理工具
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash
source ~/.bashrc // 使当前shell读入路径为filepath的shell文件并依次执行文件中的所有语句,通常用于重新执行刚修改的初始化文件,使之立即生效,而不必注销并重新登录
node 下载安装node
nvm i stable // 最新稳定版
使用nvm安装node之后,直接运行node命令会报错 node: command not found?
forever node的守护进程
npm i forever -g // https://www.cnblogs.com/pxjbk/archive/2018/12/24/10169830.html
forever list 正在守护的项目
forever stop 项目目录 停止守护
forever start 项目目录 开启守护
小白从零开始阿里云部署react项目+node服务接口(三:部署到服务器)
内容版权声明:除非注明,否则皆为本站原创文章。