Jeecg-Boot 前后端linux部署流程
目录linux 部署流程前提准备部署流程linux 部署流程前提准备安装mysqlmysql5.7安装教程安装redisredis安装教程安装nginxnginx安装教程安装jdkjdk1.8安装教程安装minio(如果你使用的话)安装dockerdocker下安装minio部署流程后台打包前端打包...
·
linux 部署流程
前提准备
- 安装mysql
mysql5.7安装教程 - 安装redis
redis安装教程 - 安装nginx
nginx安装教程 - 安装jdk
jdk1.8安装教程 - 安装minio(如果你使用的话)
安装docker
docker下安装minio
部署流程
. 后台打包
- 新建一个目录存放jar包
[root@iZbp1268ldc0zhxbsmny6xZ opt]# mkdir cspboot
- 把jar包上传上来
[root@iZbp1268ldc0zhxbsmny6xZ cspboot]# ll
total 107600
-rwxr-xr-x 1 root root 110143835 Jul 20 16:33 csp-boot-module-system-3.0.0.jar
- 启动项目
[root@iZbp1268ldc0zhxbsmny6xZ cspboot]# nohup java -jar csp-boot-module-system-3.0.0.jar >catalina.out 2>&1 &
[1] 27690
. 前端打包
- 进入前端项目的根目录:编译项目,生成dist文件
yarn run build
- 把dist文件压缩上传到nginx html目录下
[root@iZbp1268ldc0zhxbsmny6xZ ~]# cd /usr/local/nginx/html/
[root@iZbp1268ldc0zhxbsmny6xZ html]# ls
50x.html dist.zip index.html
[root@iZbp1268ldc0zhxbsmny6xZ html]#
- 把dist.zip解压
[root@iZbp1268ldc0zhxbsmny6xZ html]# unzip dist.zip
[root@iZbp1268ldc0zhxbsmny6xZ html]# ls
50x.html dist dist.zip index.html
- nginx配置
进入
cd /usr/local/nginx/conf
vim nginx.conf
9. 访问:ip+端口(nginx监听端口)
更多推荐
已为社区贡献2条内容
所有评论(0)