1. 选用Linux系统
2.node 测试的包有express knex
3. Linux 安装 nodejs 环境 https://github.com/nodesource/distributions
4. Linux 系统权限(sudo) npm 安装 pm2
5. 用 pm2 启动后端服务 示例:pm2 start index.mjs
6.注意端口号占用
7.防火墙打开对应端口号
Linux 宝塔部署
sudo bt 显示所有指令
输入 14 指令
登录宝塔
关联腾讯云API密钥 弹出框底部有个查看帮助点击一下,直接进入 (https://console.cloud.tencent.com/cam/capi)
安装mysql 和 nginx
添加数据库
myTest
hJPXBZkL6PwMsm3P
访问权限,本地服务器
开端口3306让 Navicat连接
在宝塔文件导航里面新建一个文件(部署)
上传需要的项目
打开网站导航,安装nodejs管理器---》LTS---》更新列表---》安装所需要的版本安装--》设置命令行版本(选择框来的)
添加nodejs项目-----》指定项目目录-----》填写项目名称---》检查端口
import express from "express"; import Knex from "knex"; const app = express(); const knex = Knex({ client: "mysql2", connection: { host: "119.91.31.144", // 本地 localhost 外部开发用 ip 地址 port: 3306, // 默认端口 3306 user: "myTest", // 用户名 password: "hJPXBZkL6PwMsm3P", // 密码 database: "mytest", // 指定数据表,应该是数据库吧 }, }); // 测试数据库是否连接正常 knex .raw("SELECT 1") .then(() => console.log("Connection successful")) .catch((err) => console.error("Connection failed", err)); app.get("/", async (req, res, next) => { const list = await knex('test1').select('*') return res.json(list); }); app.listen(80, () => { console.log(`http://localhost/`); });
标签:node,宝塔,console,部署,express,---,Linux,knex,ubuntu From: https://www.cnblogs.com/hechunfeng/p/17467647.html