文章目录
- 一、本地准备
- 1. 克隆项目到本地
- 2. 前端项目
- 3. 后端项目
- 4. nginx配置文件
- 二、Centos7 环境准备
- 2.1. 安装mysql并启动
- 2.2. 安装redis并启动
- 2.3. 安装nginx 和配置nginx.conf文件
- 三、测试验证
- 3.1. 上传准备好的文件
- 3.2. 启动后端项目
- 3.3. 登录验证.
- 附上完整的nginx配置文件
一、本地准备
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>
注:执行完成后在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>
注:执行完成后在C:\Users\Administrator\Desktop\RuoYi-Vue\ruoyi\target\文件夹下面会生成
一个ruoyi.jar文件
4. NGINX配置文件
附件见:文章最后
需要修改的地方,我用红色标注了
二、CENTOS7 环境准备
2.1. 安装MYSQL并启动
Linux6、7 系列 安装、卸载mysql
2.2. 安装REDIS并启动
在CentOs7上yum安装redi
2.3. 安装NGINX 和配置NGINX.CONF文件
CentOS7中使用yum安装Nginx的方法
安装完成后,接着配置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 命令操作手册
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>