修改实例密码 ——> 配置安全组
打开终端下载宝塔 ———> 保存面板访问地址、账号和密码
java —> mysql —>tomcat —-> nginx —-> redis
①.下载redis.tar.gz
②.下载yum install gcc-c++编译redis/src文件
③.进入到redis目录执行make
④.编译完成后进入到src下执行make install
设置配置文件
记得每次修改redis.conf后杀死进程重新启动服务.
开启远程访问编辑vim redis.conf,/bind搜索,注释掉;服务器注意开放端口号
①.编辑vim redis.conf,搜索/dae 改为yes挂在后台运行
②.设置密码requirepass
:wq保存退出即可
③.启动服务src/redis-server ./redis.conf即可。
④.客户端访问src/redis-cli -h localhost -p 6379 -a 密码
前提:下载node.js
1、将vue项目放到linux目录中,然后在项目目录中进入终端执行npm install 下载依赖
2、然后执行nohup npm run dev / serve >> ./vue.log & exit挂载到后台运行。
前提:下载node.js
1、将原本vue项目中的dist和nod_modules目录删除,然后将vue项目放到linux目录中,然后在项目目录中进入终端执行npm install 下载依赖 然后run build一下啊
2、然后执行nohup npm run dev >> ./admin.log & exit 或者 nohup npm run serve >> ./web.log & exit或者nohup npm run dev > my.log 2>my.log & exit 挂载到后台运行,部署完毕。
使用maven将项目打成jar包,然后将jar包放到linux目录中,然后在项目目录中进入终端执行nohup java -jar 项目名.jar &> 项目名.log & 。
项目名.log为项目日志输出.
替换默认的Spring Boot 打包插件
在父pom.xml中替换默认的 Spring Boot 打包插件:
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
替换成
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.19.1</version>
<configuration>
<skipTests>true</skipTests> <!--默认关掉单元测试 -->
</configuration>
</plugin>
</plugins>
</build>
在父项目中添加
<packaging>pom</packaging>
完整的父类pom.xml
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.guigu</groupId>
<artifactId>guigu-oa-parent</artifactId>
<!--打包方式-->
<packaging>pom</packaging>
<version>1.0-SNAPSHOT</version>
<modules>
<module>common</module>
<module>model</module>
<module>service-oa</module>
</modules>
<!--父依赖-->
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.3.6.RELEASE</version>
</parent>
<!--版本控制-->
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<java.version>1.8</java.version>
<mybatis-plus.version>3.4.1</mybatis-plus.version>
<mysql.version>8.0.30</mysql.version>
<knife4j.version>3.0.3</knife4j.version>
<jwt.version>0.9.1</jwt.version>
<fastjson.version>2.0.21</fastjson.version>
</properties>
<!--配置dependencyManagement锁定依赖的版本-->
<dependencyManagement>
<dependencies>
<!--mybatis-plus 持久层-->
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>${mybatis-plus.version}</version>
</dependency>
<!--mysql-->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>${mysql.version}</version>
</dependency>
<!--knife4j-->
<dependency>
<groupId>com.github.xiaoymin</groupId>
<artifactId>knife4j-spring-boot-starter</artifactId>
<version>${knife4j.version}</version>
</dependency>
<!--jjwt-->
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt</artifactId>
<version>${jwt.version}</version>
</dependency>
<!--fastjson-->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>${fastjson.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.19.1</version>
<configuration>
<skipTests>true</skipTests> <!--默认关掉单元测试 -->
</configuration>
</plugin>
</plugins>
</build>
</project>
设置好了之后其他模块设置 packaging 打包为jar
<packaging>jar</packaging>
启动类模块设置 pom.xml
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<!-- 指定该Main Class为全局的唯一入口 这里是启动类的地址 -->
<mainClass>com.guigu.ServiceOaApplication</mainClass>
<layout>ZIP</layout>
</configuration>
<executions>
<execution>
<!--可以把依赖的包都打包到生成的Jar包中-->
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
设置好了之后进行maven,找到父类的maven,点击package打包了好了