Linux上部署前后端项目详细攻略

2020-11-30  本文已影响0人  喜欢星期六_

一、安装Linux系统

1,使用UItralSO软件制作U盘

https://www.cnblogs.com/coxiseed/p/9851459.html

2,U盘制作好了之后在需要安装的主机上插入U盘,进入boos界面,选择U盘启动

3,设定管理员账号密码:管理员账号root,密码设置为admin2020

4,配置网络:使用nmtui命令配置静态IP地址,设置好网络之后重启服务器;

5,至此,服务器安装Linux系统结束。

二、在Linux服务器上搭建Springboot-vue前后端分离项目的运行环境

1,查看Linux系统中yum下载安装命令、wget下载命令是否齐全

2,下载Java运行环境(yum install java )

3,下载nginx并修改nginx配置文件(nginx.conf)

注意:

下载nginx

下载nginx使用 yum install nginx 命令会提示没有可用的软件包

使用命令sudo yum install epel-release安装epel

使用yum update命令更新升级

从新使用yum install -y

nginx 安装nginx

nginx配置文件

nginx.conf  文件

user  nginx;

worker_processes  1;

error_log  /var/log/nginx/error.log warn;

pid        /var/run/nginx.pid;

events {

    worker_connections  1024;

}

http {

    include       /etc/nginx/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 /var/log/nginx/access.log  main;

    client_max_body_size 1024M;

    sendfile        on;

    #tcp_nopush     on;

    keepalive_timeout  1800;

    #gzip on;

    include /etc/nginx/conf.d/*.conf;

}

default.conf     文件

server {

    listen      80;

    server_name localhost;

    #charset koi8-r;

    #access_log /var/log/nginx/host.access.log main;

    location / {

        root  /usr/share/nginx/water;

        index index.html index.htm;

    }

    location /water-api {

        proxy_set_header X-Real-IP$remote_addr;

        proxy_set_header REMOTE-HOST$remote_addr;

        proxy_set_header X-Forwarded-For$proxy_add_x_forwarded_for;

proxy_pass

http://localhost:8080/water-api;

    }

    #error_page 404              /404.html;

    # redirect server error pages to the staticpage /50x.html

    error_page  500 502 503 504  /50x.html;

    location = /50x.html {

        root  /usr/share/nginx/water;

    }

}

开启80和8080端口

查看已开启的端口

firewall-cmd --list-ports

查看防火墙状态

firewall-cmd --state

开启防火墙

systemctl start firewalld

开启端口

firewall-cmd --zone=public --add-port=8080/tcp --permanent

firewall-cmd --zone=public --add-port=80/tcp --permanent

重启防火墙

firewall-cmd --reload

创建一个后端文件夹

mkdir -p /opt/iowater创建一个iowater文件夹用于存放后端文件

三、前后端项目打包发布

前端打包命令:npm run

build:stage

后端打包命令:mvn clean

package

将打包文件放入nginx指定文件夹下面,

前端放入cd /usr/share/nginx文件夹下面

后端放入cd /opt/iowater文件夹下面

后端使用命令启动water-api.jar

(nohup java -server -jar -Dspring.profiles.active=prod -Dserver.port=8080 water-api.jar &)

Test:打开网页直接输入IP地址就可以访问该系统了

上一篇下一篇

猜你喜欢

热点阅读