前后端(react+springboot)服务器部署

前后端(react+springboot)服务器部署

  • 1_前端react+umi服务器部署
    • 1.1_前端生成dist目标文件
    • 1.2_准备连接服务器的工具
    • 1.3_安装nginx
    • 1.4_部署项目
      • 1.4.1_传输dist文件
      • 1.4.2_配置配置文件
      • 1.4.3_启动nginx
  • 2_后端springboot项目部署服务器
    • 2.1_后端生成目标文件
    • 2.2_准备连接服务器的工具(同1.2)
    • 2.3_在服务器上安装jdk环境
    • 2.4_部署项目

1_前端react+umi服务器部署

1.1_前端生成dist目标文件

在控制台输入:umi build生成dist文件

1.2_准备连接服务器的工具

准备XShell(用于控制服务器控制台)以及Xftp(用于和服务器传输文件)

阿里云盘下载链接

1.3_安装nginx

见此大神博客

1.4_部署项目

1.4.1_传输dist文件

将前端目标文件dist重命名为自己喜欢的名字如webClient(比如现在需要部署两个项目,在本例中前端的两个目标文件分别命名为webClient1,webClient2),放到服务器中安装好的nginx文件目录下。

目录结构:
+usr
​+++nginx //安装的nginx
​+++conf //配置文件目录
​+++sbin //启动nginx时需要前往的文件
​+++webClient1 //前端1的目标文件
+++webClient2 //前端2的目标文件

1.4.2_配置配置文件

配置配置文件nginx.conf

原文件(别看这个)

#user  nobody;
worker_processes  1;#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;#pid        logs/nginx.pid;events {worker_connections  1024;
}http {include       mime.types;default_type  application/octet-stream;#log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '#                  '$status $body_bytes_sent "$http_referer" '#                  '"$http_user_agent" "$http_x_forwarded_for"';#access_log  logs/access.log  main;sendfile        on;#tcp_nopush     on;#keepalive_timeout  0;keepalive_timeout  65;#gzip  on;server {listen       80;server_name  localhost;#charset koi8-r;#access_log  logs/host.access.log  main;location / {root   html;index  index.html index.htm;}#error_page  404              /404.html;# redirect server error pages to the static page /50x.html#error_page   500 502 503 504  /50x.html;location = /50x.html {root   html;}# proxy the PHP scripts to Apache listening on 127.0.0.1:80##location ~ \.php$ {#    proxy_pass   http://127.0.0.1;#}# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000##location ~ \.php$ {#    root           html;#    fastcgi_pass   127.0.0.1:9000;#    fastcgi_index  index.php;#    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;#    include        fastcgi_params;#}# deny access to .htaccess files, if Apache's document root# concurs with nginx's one##location ~ /\.ht {#    deny  all;#}}# another virtual host using mix of IP-, name-, and port-based configuration##server {#    listen       8000;#    listen       somename:8080;#    server_name  somename  alias  another.alias;#    location / {#        root   html;#        index  index.html index.htm;#    }#}# HTTPS server##server {#    listen       443 ssl;#    server_name  localhost;#    ssl_certificate      cert.pem;#    ssl_certificate_key  cert.key;#    ssl_session_cache    shared:SSL:1m;#    ssl_session_timeout  5m;#    ssl_ciphers  HIGH:!aNULL:!MD5;#    ssl_prefer_server_ciphers  on;#    location / {#        root   html;#        index  index.html index.htm;#    }#}}

删减后并加了注释的原文件

worker_processes  1;events {worker_connections  1024;
}http {include       mime.types;default_type  application/octet-stream;#配置一个server接口,此例的访问路径为localhost:80/,因为接口的默认端口是80,所以也可以这样访问localhost#上一行中的localhost代表此服务器的IP地址server {listen       80;#监听的端口号server_name  localhost;# localhost后面的 '/' 是访问的接口路径location / {root   html;#html是nginx下的前端目标文件的相对路径index  index.html index.htm;#不用动}}
}

在本例中应该如此配置

worker_processes  1;events {worker_connections  1024;
}http {include       mime.types;default_type  application/octet-stream;#配置webClient1的接口,访问路径是localhost:8080/webClientserver {listen       8080;server_name  localhost;location /webClient {root   webClient1;index  index.html index.htm;}}#配置webClient2的接口,访问路径是localhost:8081/webClientserver {listen       8081;server_name  localhost;location /webClient {root   webClient2;index  index.html index.htm;}}
}

1.4.3_启动nginx

  1. 启动nginx

启动代码格式:nginx安装目录地址 -c nginx配置文件地址

例如:

[root@localhost ~]# /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
  1. 重启nginx
[root@localhost sbin]# ./nginx -s reload

nginx命令大全

2_后端springboot项目部署服务器

这里只讲解其中一种比较简单的方式

详情见此大神博客

2.1_后端生成目标文件

  1. 在pom文件中加入代码
<packaging>jar</packaging>

[(img-NaGobuYK-1668481227479)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20221115103659948.png)]

  1. 生成jar目标文件(生成文件的位置在target目录下)

点击package运行即可

在这里插入图片描述

2.2_准备连接服务器的工具(同1.2)

2.3_在服务器上安装jdk环境

  1. 下载jdk

jdk下载官网:https://www.oracle.com/java/technologies/javase/javase-jdk8-downloads.html,博主使用的版本是jdk-8u261-linux-x64.tar.gz

  1. 上传到服务器中并解压

    (1)在opt目录下创建jdk文件夹

    (2)解压 jdk-8u261-linux-x64.tar.gz

    tar -zxvf jdk-8u261-linux-x64.tar.gz
    

    解压完成之后会出现jdk1.8文件夹。

  1. 配置环境变量

    (1)打开profile配置文件

    vi /etc/profile
    

    (2)添加以下代码(注意:JAVA_HOME就是jdk1.8的文件路径。其他不用变)

    export JAVA_HOME=/opt/jdk/jdk1.8
    export JRE_HOME=${JAVA_HOME}/jre
    export CLASSPATH=.:${JAVA_HOME}/lib:${JRE_HOME}/lib
    export PATH=${JAVA_HOME}/bin:$PATH
    

    (3)使配置文件生效

    source /etc/profile
    

    (4)查看jdk安装成功与否

    java -version
    

2.4_部署项目

  1. 将目标jar文件放到opt目录下的新建文件夹下,比如新建的文件名为webServer
  1. 改写start.sh运行脚本文件
#!/bin/bash#变量,将APP_NAME改为自己的jar包名,APP_LOCAL改为自己项目的路径
APP_NAME=serve-0.0.1-SNAPSHOT.jar
APP_LOCAL=/opt/mySpringboot/
APP_ALL=$APP_LOCAL$APP_NAME#线程已经存在则 先kill 
tpid=`ps -ef|grep $APP_ALL|grep -v grep|grep -v kill|awk '{print $2}'`
if [ ${tpid} ]; thenecho 'Stopping' $APP_ALL '...'kill -15 $tpid
fi
sleep 5
tpid=`ps -ef|grep $APP_ALL|grep -v grep|grep -v kill|awk '{print $2}'`
if [ ${tpid} ]; thenecho 'Kill' $APP_ALL 'Process!'kill -9 $tpid
elseecho $APP_ALL 'Stoped Success!'
fi#启动
rm -f tpidnohup java -Dfile.encoding=UTF-8 -jar $APP_ALL > $APP_LOCAL"out.log" 2>&1 &
echo $! > $APP_ALL".tpid"
echo $APP_ALL Start Success!
  1. 将start.sh脚本文件放入webServer项目目录下并在当前目录下运行

    bash start.sh
    
  1. 查看运行日志

    运行成功后会在当前目录下生成一个out.log日志,可以进行查看

  1. 重启

    (1)杀死之前的进程

    #查看所占用的进程号
    ps -ef | grep jar包的名字.jar
    #杀死进程
    kill -9 进程id
    

    (2)启动

    bash start.sh

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/545136.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

关于CentOS-6的默认带的mysql启动和安装问题

一开始想自己一步一步从编译开始搭建一个lanmp环境&#xff1b;从鸟哥的linux看到可以不用自己去安装&#xff0c;默认的可能更稳定&#xff0c;所以就开始探索系统自带的mysql和其他的工具&#xff0c;在mysql启动的时候遇到了问题。问题&#xff1a;默认的系统中根本就没有 【…

【LeetCode从零单排】No 191.Number of 1 Bits(考察位运算)

题目 Write a function that takes an unsigned integer and returns the number of ’1 bits it has (also known as the Hamming weight). For example, the 32-bit integer ’11 has binary representation 00000000000000000000000000001011, so the function should retur…

提高生产力,最全 MyBatisPlus 讲解!

如果你每天还在重复写 CRUD 的 SQL&#xff0c;如果你对这些 SQL 已经不耐烦了&#xff0c;那么你何不花费一些时间来阅读这篇文章&#xff0c;然后对已有的老项目进行改造&#xff0c;必有收获&#xff01;一、MP 是什么MP 全称 Mybatis-Plus &#xff0c;套用官方的解释便是成…

c#象棋程序_C ++程序确定象棋方块的颜色

c#象棋程序A chess board is equally divided into 64 identical squares that are black and white alternately. Each square on the chessboard can be identified by the coordinates as A to H on the horizontal axis and 1 to 8 on the vertical axis as shown in the f…

几个力学概念

简支梁 简支梁就是两端支座仅提供竖向约束&#xff0c;而不提供转角约束的支撑结构。简支梁仅在两端受铰支座约束&#xff0c;主要承受正弯矩&#xff0c;一般为静定结构。 只有两端支撑在柱子上的梁&#xff0c;主要承受正弯矩&#xff0c;一般为静定结构。体系温变、混凝土收…

Linux(CentOS)安装apache(httpd),其他电脑无法访问的原因 【iptables打开某端口】

今天试了下在虚拟机上利用CentOS系统的yum命令安装好了httpd(apache2.2)&#xff0c; 然后在windows系统下访问此虚拟机的ip地址&#xff0c;却访问不了。 因为前段时间有知道过iptable的限制&#xff0c;所以在想是不是因为iptable限制了80端口呢&#xff01; 所以在网上…

python字符串转义序列_Python | 忽略字符串中的转义序列

python字符串转义序列First see, how escape sequence works? 首先看&#xff0c;转义序列如何工作&#xff1f; In the below example, we are using some of the escape sequence and their outputs, we are printing single quote (\), double quotes (\"), printing…

MySQL中你必须知道的10件事,1.5万字!

攻击性不大&#xff0c;侮辱性极强1、SQL语句执行流程MySQL大体上可分为Server层和存储引擎层两部分。Server层&#xff1a;连接器&#xff1a;TCP握手后服务器来验证登陆用户身份&#xff0c;A用户创建连接后&#xff0c;管理员对A用户权限修改了也不会影响到已经创建的链接权…

Xamarin只言片语2——Xamarin下的web api操作

在很多时候&#xff0c;我们是希望手机app是要和服务端关联&#xff0c;并获取服务端的数据的&#xff0c;本篇博文我们看一下在xmarin下&#xff0c;怎么和用web api的方式与服务端连接并获取数据。首先看web api的开发&#xff0c;本实例是用Visual Studio 2013 with update …

求求你,别再用wait和notify了!

作者 | 王磊来源 | Java中文社群&#xff08;ID&#xff1a;javacn666&#xff09;转载请联系授权&#xff08;微信ID&#xff1a;GG_Stone&#xff09;Condition 是 JDK 1.5 中提供的用来替代 wait 和 notify 的线程通讯方法&#xff0c;那么一定会有人问&#xff1a;为什么不…

JavaScript--变量、作用域及内存(12)

// JS变量是松散型的(不强制类型)本质,决定了它只是在特定时间用于保存特定值的一个名字而已; // 由于不存在定义某个变量必须要保存何种数据类型值的规则,变量的值及其数据类型可以在脚本的生命周期内改变; 一 变量及作用域 1.基本类型和引用类型 1 // JS变量包含两种不同的数…

查看MYSQL数据库中所有用户及拥有权限

查看MYSQL数据库中所有用户mysql> SELECT DISTINCT CONCAT(User: ,user,,host,;) AS query FROM mysql.user; --------------------------------------- | query | --------------------------------------- | User: cactiuser%; …

c ++类成员函数_C ++编程中的数据成员和成员函数

c 类成员函数C 中的数据成员和成员函数 (Data members and Member functions in C) "Data Member" and "Member Functions" are the new names/terms for the members of a class, which are introduced in C programming language. “数据成员”和“成员函…

一文学搞懂阿里开源的微服务新贵Nacos!

正式开始之前我们先来了解一下什么是 Nacos&#xff1f;Nacos 是阿里的一个开源产品&#xff0c;它是针对微服务架构中的 「服务发现」、「配置管理」、「服务治理」的综合性解决方案。官网给出的回答&#xff1a;“Nacos 致力于帮助您发现、配置和管理微服务。Nacos 提供了一组…

ntfs安全权限和共享权限的区别

ntfs安全权限和共享权限的区别 win xp 最大分区32G,最大文件大小4G. 共享权限是为网络用户设置的&#xff0c;NTFS权限是对文件夹设置的。用户对文件夹有什么权限就是看NTFS权限的设置。如果一个文件夹设置成共享&#xff0c;其具体的权限还是在NTFS权限上面设置的&#xff0c;…

The connection to adb is down, and a severe error has occured.

转自&#xff1a;http://blog.csdn.net/yu413854285/article/details/7559333 &#xff08;感谢原文作者&#xff0c;问题解决&#xff09; 启动android模拟器时.有时会报The connection to adb is down, and a severe error has occured.的错误.在网友说在任务管理器上把所有…

kotlin 16进制_Kotlin程序将八进制数转换为十进制数

kotlin 16进制Given a number in octal number system format, we have to convert it into decimal number system format. 给定八进制系统格式的数字&#xff0c;我们必须将其转换为十进制系统格式。 Example: 例&#xff1a; Input:num 344Output:228在Kotlin中将八进制数…

线程池的7种创建方式,强烈推荐你用它...

作者 | 王磊来源 | Java中文社群&#xff08;ID&#xff1a;javacn666&#xff09;转载请联系授权&#xff08;微信ID&#xff1a;GG_Stone&#xff09;根据摩尔定律所说&#xff1a;集成电路上可容纳的晶体管数量每 18 个月翻一番&#xff0c;因此 CPU 上的晶体管数量会越来越…

SQL调用C# dll(第一中DLL,没使用强名称密匙,默认是 safe)

https://msdn.microsoft.com/zh-cn/library/ms345106(es-es).aspx 1、新建项目名称SQLDllTest&#xff0c;类代码如下&#xff0c;没有用Using引用其他类&#xff1a; &#xff08;框架必须改为.NET3.5及3.5以下&#xff0c;因为SQL Server 2008只是支持.NET 3.5及一下&#xf…

Linux系统下启动MySQL的命令及相关知识

一、总结一下&#xff1a; 1.Linux系统下启动MySQL的命令&#xff1a; /ect/init.d/mysql start (前面为mysql的安装路径) 2.linux下重启mysql的命令&#xff1a; /ect/init.d/mysql restart (前面为mysql的安装路径) 3.linux下关闭mysql的命令&#xff1a; /ect/init.d/mysql …