You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
560 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

### nohup 开发测试环境部署方案
在项目开发、测试环境,我们需要的只是快速部署、测试项目功能,因此该方案是最简单、也是最适合开发调试环境的首选方案.
```code
# 首先编译出可执行文件
# 将可执行文件 + config目录 + public 目录 + storage 目录 合计4项全部复制在服务器。
# 进入可执行文件目录执行
nohup 可执行文件名 &
# 版本更新
# 杀死旧进程
kill -9 进程pid
# 重新启动进程
nohup 可执行文件名 &
```