iOS死开发硬转JAVA后台 入门到XX(4)部署

2019-11-27  本文已影响0人  melody5417

《spring boot in action》这本书粗略的看了一遍,现阶段对我比较重要的是打包和部署,如果能把服务部署发布出去,对自己是一个阶段性的鼓励。所以本书其他的内容,如单测,actuator等,都不仔细阅读和实践了,先把整个流程走通~

打包和部署在《spring boot in action》书里介绍分以下几种


image.png

本次实践的部署方式是
JAR + Maven + 云服务器(公司内网)

打包

本地打包Jar

<build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <configuration>
                    <fork>true</fork>
                </configuration>
            </plugin>
        </plugins>
    </build>

    <packaging>jar</packaging>
image.png image.png

部署

云服务器配置

公司内申请了一个云服务器 还不知道怎么玩 准备学习一下

新建用户

http://examplecode.cn/2018/09/03/centos-create-user/?spm=a2c4e.10696291.0.0.794119a4vKd5om

学习
* wheel 群组的作用
* 新建用户的必要
* 平时操作尽量不使用root用户,如果需要root权限执行名,使用 sudo

// 切换用户
[root@VM_192_74_centos ~]# su - 用户名

安装 JDK

第一遍安装选错了 装了32位的 后来查了系统版本 确定了要装的版本
安装错了 需要卸载 费了功夫
https://blog.csdn.net/fenglongmiao/article/details/79221552

// 查看系统版本
[root@VM_192_74_centos ~]# cat /etc/issue
Tencent tlinux release 2.2 (Final)
Kernel \r on an \m

[root@VM_192_74_centos ~]# cat /etc/redhat-release 
CentOS Linux release 7.2 (Final)

// 查看文件信息
[root@VM_192_74_centos ~]# stat file

// 查看现存 JDK
[root@VM_192_74_centos ~]# rpm -qa|grep jdk

// 卸载 JDK
[root@VM_192_74_centos ~]# rpm -e --nodeps jdk-XXX.x86_64

安装tomcat

安装maven

yum 安装,很简单

安装vsftpd

为了实现 开发机(Mac 和 服务器(centos)的文件互传

运行 JAR 包

服务器运行java -version,惊奇地发现变成JAVA7了,但是明明前一天安装并且验证了安装的是JAVA8.

再次运行

java -jar demo-0.0.1-SNAPSHOT.jar


image.png

部署成功了!!!!!

参考

https://yq.aliyun.com/articles/654593
https://www.cnblogs.com/toutou/p/9675218.html

上一篇下一篇

猜你喜欢

热点阅读