美文网首页
Ruoyi前后端部署全过程

Ruoyi前后端部署全过程

作者: 半理想主义 | 来源:发表于2023-04-15 21:47 被阅读0次

    部署步骤

    1、后端端口改为8900

    2、前端打包输出目录改为ruoyi,连接后端的端口也记得改为8900

    3、Nginx配置

    worker_processes  1;
    
    events {
        worker_connections  1024;
    }
    
    http {
        include       mime.types;
        default_type  application/octet-stream;
        sendfile        on;
        keepalive_timeout  65;
    
        server {
            listen       8889;
            server_name  localhost;
            charset utf-8;
    
            location / {
                root   html/ruoyi;
                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:8900/;
            }
    
            error_page   500 502 503 504  /50x.html;
            location = /50x.html {
                root   html;
            }
        }
    }
    

    其实只需要server这一段

    4、开通防火墙端口

    firewall-cmd --add-port=8889/tcp --permanent
    firewall-cmd --reload
    
    firewall-cmd: 是一个用于配置基于 firewalld 的防火墙的命令行工具。
    --add-port=80/tcp: 表示添加一条 TCP 端口转发规则,将 80 端口开放出来。
    --permanent: 表示该端口转发规则是永久性的,即当防火墙重启后仍然有效。
    

    5、centos7如何设置jar包开机自动启动

    在 CentOS 7 中,可以通过 systemd 来设置 jar 包开机自动启动。以下是具体的步骤:

    1、创建一个 systemd 的 service 文件,比如可以命名为 ruoyi.service,并将其保存到 /etc/systemd/system/ 目录下,例如:

    sudo vim /etc/systemd/system/ruoyi.service
    

    2、在 ruoyi.service 文件中输入以下内容(注意修改 WorkingDirectory 和 ExecStart 为你实际的路径和命令):

    [Unit]
    Description=Ruoyi Service
    After=syslog.target
    After=network.target
    
    [Service]
    User=root
    WorkingDirectory=/developer/ruoyi/
    ExecStart=/developer/jdk1.8.0_361/bin/java -jar /developer/ruoyi/ruoyi-admin.jar
    SuccessExitStatus=143
    
    [Install]
    WantedBy=multi-user.target
    

    3、保存并关闭文件,然后重新加载 systemd 配置文件:

    sudo systemctl daemon-reload
    

    4、设置开机自启动:

    sudo systemctl enable ruoyi.service
    

    5、启动服务:
    sql

    sudo systemctl start ruoyi.service
    
    现在,当系统重启后,该服务应该已经自动启动了。你可以通过以下命令来检查服务的状态:
    
    sudo systemctl status ruoyi.service
    

    如果服务正在运行,将会显示类似如下的信息:


    image.png
    ● ruoyi.service - Ruoyi Service
       Loaded: loaded (/etc/systemd/system/ruoyi.service; enabled; vendor preset: disabled)
       Active: active (running) since 日 2023-04-16 21:24:41 CST; 4s ago
     Main PID: 4878 (java)
       CGroup: /system.slice/ruoyi.service
               └─4878 /developer/jdk1.8.0_361/bin/java -jar /developer/ruoyi/ruoyi-admin.jar
    
    4月 16 21:24:42 localhost.localdomain java[4878]: //            \  \ `-.   \_ __\ /__ _/   .-` /  /                 //
    4月 16 21:24:42 localhost.localdomain java[4878]: //      ========`-.____`-.___\_____/___.-`____.-'========         //
    4月 16 21:24:42 localhost.localdomain java[4878]: //                           `=---='                              //
    4月 16 21:24:42 localhost.localdomain java[4878]: //      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^        //
    4月 16 21:24:42 localhost.localdomain java[4878]: //             佛祖保佑       永不宕机      永无BUG               //
    4月 16 21:24:42 localhost.localdomain java[4878]: ////////////////////////////////////////////////////////////////////
    4月 16 21:24:43 localhost.localdomain java[4878]: 21:24:43.041 [main] INFO  c.r.RuoYiApplication - [logStarting,55] - Starting RuoYiApplication using ...er/ruoyi)
    4月 16 21:24:43 localhost.localdomain java[4878]: 21:24:43.041 [background-preinit] INFO  o.h.v.i.util.Version - [<clinit>,21] - HV000001: Hibernate V...2.3.Final
    4月 16 21:24:43 localhost.localdomain java[4878]: 21:24:43.047 [main] DEBUG c.r.RuoYiApplication - [logStarting,56] - Running with Spring Boot v2.5.14...g v5.3.20
    4月 16 21:24:43 localhost.localdomain java[4878]: 21:24:43.049 [main] INFO  c.r.RuoYiApplication - [logStartupProfileInfo,686] - The following 1 profi...: "druid"
    Hint: Some lines were ellipsized, use -l to show in full.
    
    

    如果服务没有启动,可以通过以下命令查看日志:

    sudo journalctl -u ruoyi.service
    

    根据输出信息查找问题并解决即可。

    如果想要移除,只需要三步

    1、sudo systemctl stop ruoyi.service  停止服务
    2、sudo systemctl disable ruoyi.service 禁止服务开机自启
    3、sudo rm /etc/systemd/system/ruoyi.service 删除服务文件
    

    6、centos7如何设置nginx开机自动启动

    在 CentOS 7 上设置 Nginx 自启动,可以按照以下步骤进行:

    1、创建一个 nginx.service 的服务文件

    sudo vim /usr/lib/systemd/system/nginx.service
    

    2、在文件中添加以下内容:

    [Unit]
    Description=The NGINX HTTP and reverse proxy server
    After=syslog.target network.target remote-fs.target nss-lookup.target
    
    [Service]
    Type=forking
    PIDFile=/usr/local/nginx/logs/nginx.pid
    ExecStartPre=/usr/local/nginx/sbin/nginx -t -c /usr/local/nginx/conf/nginx.conf
    ExecStart=/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
    ExecReload=/bin/kill -s HUP $MAINPID
    ExecStop=/bin/kill -s QUIT $MAINPID
    PrivateTmp=true
    
    [Install]
    WantedBy=multi-user.target
    

    其中,ExecStart 行指定了启动 Nginx 的命令,ExecStop 行指定了停止 Nginx 的命令。

    3、保存文件并退出编辑器

    4、启动服务

    sudo systemctl start nginx
    

    设置开机自启动

    sudo systemctl enable nginx
    

    现在,当您的 CentOS 7 系统启动时,Nginx 将自动启动
    5、查看nginx服务状态


    image.png

    相关文章

      网友评论

          本文标题:Ruoyi前后端部署全过程

          本文链接:https://www.haomeiwen.com/subject/mbaxjdtx.html