CENTOS7 部署若依前后端分离项目

一、本地准备

1. 克隆项目到本地

<span style="background-color:#f3f4f5"><span style="color:#000000"><code class="language-json">git clone git@gitee<span style="color:#969896">.</span>com<span style="color:#969896">:</span>y_project<span style="color:#df5000">/</span>RuoYi<span style="color:#df5000">-</span>Vue<span style="color:#969896">.</span>git
</code></span></span>
  • 1

2. 前端项目

<span style="background-color:#f3f4f5"><span style="color:#000000"><code class="language-json">#进入前端项目
cd <span style="color:#0086b3">C</span><span style="color:#969896">:</span>\Users\Administrator\Desktop\RuoYi<span style="color:#df5000">-</span>Vue\ruoyi<span style="color:#df5000">-</span>ui
# 建议不要直接使用 cnpm 安装依赖,会有各种诡异的 bug。可以通过如下操作解决 npm 下载速度慢的问题
npm install <span style="color:#df5000">--</span>registry<span style="color:#df5000">=</span>https<span style="color:#969896">:</span><span style="color:#df5000">/</span><span style="color:#df5000">/</span>registry<span style="color:#969896">.</span>npm<span style="color:#969896">.</span>taobao<span style="color:#969896">.</span>org
# 安装依赖
npm install
# 构建生产环境
npm run build<span style="color:#969896">:</span>prod
</code></span></span>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

注:执行完成后在ruoyi-ui文件夹下面会生成
一个dist文件夹

3. 后端项目

<span style="background-color:#f3f4f5"><span style="color:#000000"><code class="language-json">#进入后端项目目录
cd <span style="color:#0086b3">C</span><span style="color:#969896">:</span>\Users\Administrator\Desktop\RuoYi<span style="color:#df5000">-</span>Vue\ruoyi
#maven编译打包
mvn clean install <span style="color:#df5000">-</span>DskipTests
</code></span></span>
  • 1
  • 2
  • 3
  • 4

注:执行完成后在C:\Users\Administrator\Desktop\RuoYi-Vue\ruoyi\target\文件夹下面会生成
一个ruoyi.jar文件

4. NGINX配置文件

附件见:文章最后

需要修改的地方,我用红色标注了

二、CENTOS7 环境准备

2.1. 安装MYSQL并启动

Linux6、7 系列 安装、卸载mysql_gblfy的博客-CSDN博客

2.2. 安装REDIS并启动

在CentOs7上yum安装redis_gblfy的博客-CSDN博客

2.3. 安装NGINX 和配置NGINX.CONF文件

CentOS7中使用yum安装Nginx的方法_gblfy的博客-CSDN博客

安装完成后,接着配置nginx.conf文件

yum在线安装的nginx中间件, nginx.conf文件默认在
cd /etc/nginx目录下面,复制准备好的nginx.conf
接覆盖,然后,重启nginx即可

前提是:配置中的指定目录已经修改好了

三、测试验证

3.1. 上传准备好的文件

案例演示:
我把ruoyi.jar和dist都放到了/app下面
启动后端项目,为了方便监控日志,暂时采用前台启动

3.2. 启动后端项目

<span style="background-color:#f3f4f5"><span style="color:#000000"><code class="language-c">java <span style="color:#df5000">-</span>jar ruoyi<span style="color:#969896">.</span>jar
</code></span></span>
  • 1

附上:后台启动:nohup java -jar ruoyi.jar &

具体配置详见:Linux 命令操作手册_gblfy的博客-CSDN博客

3.3. 登录验证.

注:如果登录页面,不显示验证码,建议查看redis是够已经启动!

附上完整的NGINX配置文件

这一块很重要

location /prod-api/{
            proxy_set_header Host $http_host;
            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/;
        }

<span style="background-color:#f3f4f5"><span style="color:#000000"><code class="language-xml">
#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/dist/;
			try_files $uri $uri/ /index.html;
            index  index.html index.htm;
        }
		
		location /prod-api/{
			proxy_set_header Host $http_host;
			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/;
		}

        #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;
    #    }
    #}

}
</code></span></span>

  • 1
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
CentOS是一款流行的Linux操作系统,适合部署各种类型的项目若依是一个基于SpringBoot框架开发的通用权限管理系统,采用前后端分离的架构。下面将详细讲述如何在CentOS部署若依前后端分离项目。 1.安装Java环境。 若依是基于Java开发的系统,所以需要安装Java环境。可通过以下命令进行安装: yum install java-1.8.0-openjdk-devel 2.安装MySQL数据库。 若依需要使用MySQL数据库进行数据存储。可通过以下命令进行安装: yum install mysql-server mysql 3.安装Nginx。 Nginx是一款高性能的Web服务器,也是实现前后端分离的关键组件。可通过以下命令进行安装: yum install nginx 4.部署若依后端。 将若依的后端代码部署CentOS服务器上,并在MySQL数据库中创建对应的数据库和数据表。在application-*.yml配置文件中设置数据库连接信息和端口号等相关配置。 5.部署若依前端。 将若依前端代码部署到Nginx服务器上,并在Nginx配置文件中设置代理转发规则。例如,将/api开头的请求转发到后端的对应接口上。 6.启动服务。 分别启动后端服务和Nginx服务,可通过Systemd进行管理。在后端接口正常提供服务的情况下,可以通过浏览器访问Nginx服务器的IP地址和端口号,查看前端界面。 总之,通过上述步骤可以在CentOS服务器上成功部署若依前后端分离项目,实现良好的用户体验和数据存储。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

飞飞翼

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值