前后端项目部署到linux服务器上
打包后端生成jar包
- 按下图点击构建后端项目;
- 找到自己的项目路径,找到打包好的后端jar包;
构建前端项目
- 根据下图构建前端项目;
- 构建完成,生成的打包文件如下,同样,在电脑中找到该文件;
准备服务器部署项目
- 准备linux服务器,linux安装jdk,linux安装tomcat,linux安装nginx等;
- 安装完毕后,将刚刚打包的前后点文件放到同一个文件夹下,上传到linux服务器上; linux连接软件为xshell,上传软件为xftp,自行准备;
- 配置nginx代理,如果你是根据本文提供的教程来安装的,则安装后的配置文件路径如下:/usr/local/webserver/nginx/conf;找到该文件夹下的 nginx.conf 文件,打开编辑;编辑配置代码如下:
user www www;
worker_processes 2; #设置值和CPU核心数一致
error_log /usr/local/webserver/nginx/logs/nginx_error.log crit; #日志位置和日志级别
pid /usr/local/webserver/nginx/nginx.pid;
#Specifies the value for maximum file descriptors that can be opened by this process.
worker_rlimit_nofile 65535;
events
{
use epoll;
worker_connections 65535;
}
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';
#charset gb2312;
server_names_hash_bucket_size 128;
client_header_buffer_size 32k;
large_client_header_buffers 4 32k;
client_max_body_size 8m;
sendfile on;
tcp_nopush on;
keepalive_timeout 60;
tcp_nodelay on;
fastcgi_connect_timeout 300;
fastcgi_send_timeout 300;
fastcgi_read_timeout 300;
fastcgi_buffer_size 64k;
fastcgi_buffers 4 64k;
fastcgi_busy_buffers_size 128k;
fastcgi_temp_file_write_size 128k;
gzip on;
gzip_min_length 1k;
gzip_buffers 4 16k;
gzip_http_version 1.0;
gzip_comp_level 2;
gzip_types text/plain application/x-javascript text/css application/xml;
gzip_vary on;
#limit_zone crawler $binary_remote_addr 10m;
#下面是server虚拟主机的配置
server
{
listen 80;#监听端口
server_name localhost;#域名
index index.html index.htm index.php;
root /usr/local/webserver/nginx/html;#站点目录
location ~ .*\.(php|php5)?$
{
#fastcgi_pass unix:/tmp/php-cgi.sock;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fastcgi.conf;
}
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|ico)$
{
expires 30d;
# access_log off;
}
location ~ .*\.(js|css)?$
{
expires 15d;
# access_log off;
}
access_log off;
}
server {
listen 9080;
server_name localhost;
location / {
root /xcc/project/study/dist;
index index.html;
}
location /_api/ {
proxy_pass http://localhost:1001;
rewrite ^/_api/(.*)$ /$1 break;
}
}
}
重新在xshell检测该配置文件的正确性并重新载入配置和在重启nginx服务
[root@bogon conf]# /usr/local/webserver/nginx/sbin/nginx -t #检查配置文件nginx.conf的正确性
[root@bogon conf]# /usr/local/webserver/nginx/sbin/nginx -s reload # 重新载入配置文件
[root@bogon conf]#/usr/local/webserver/nginx/sbin/nginx -s reopen # 重启 Nginx
[root@bogon conf]#/usr/local/webserver/nginx/sbin/nginx -s stop # 停止 Nginx
- 启动linux的后端服务,命令如下;
nohup java -jar study-1.0.0-SNAPSHOT.jar --spring.profiles.active=prod >> study.log 2>&1 &
nohup *** &
表示在后台启动,即当该命令窗口关闭时,服务不受影响;java -jar
表示对jar包的启动方式,固定的,记住就好;--spring.profiles.active=prod
表示选择了正式环境的配置文件,不理解的请看文章课程1-1-SpringBoot基础教程;>> study.log
表示将日志输入到该文件,如果没有,系统会自己创建;2>&1
表示流的输入;
5.查看日志,启动完成;
6.服务器防火墙开启访问端口,并本地测试访问;
测试连接正常,访问数据无误,部署完毕。