yum install -y wget && wget -O install.sh http://download.bt.cn/install/install_6.0.sh && sh install.sh
复制内网链接,进入宝塔页面,下载mysql、tomcat、PHP、phpadmin
端口放行 :宝塔+云服务器
如果你需要上传文件到目录,在application.yml中配置:
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.CorsRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
@Configuration
public class WebMvcConfigure implements WebMvcConfigurer {
@Value("${CROS_MAPPING}")
private String mapping;
@Value("${CROS_ALLOWED_ORIGINS}")
private String[] allowedOrigins;
@Value("${CROS_ALLOWED_METHOD}")
private String[] allowedMethods;
@Override
public void addCorsMappings(CorsRegistry registry) {
registry.addMapping(mapping).allowedOrigins(allowedOrigins).allowedMethods(allowedMethods).allowCredentials(true);
}
}
配置文件
在resource里面配置springboot基本配置的配置文件(application.properties,也可以是别的,看你的项目配的是哪个文件)里面加入以下配置,根据自己的需要配置。在上一个文件里面@Value就可以读到下面的配置啦。
CROS_MAPPING=/**
CROS_ALLOWED_ORIGINS=http://localhost:81,http://localhost:8080
CROS_ALLOWED_METHOD=OPTIONS,GET,POST,DELETE,PUT
navicat存储sql文件
将sql文件导入到宝塔,然后再导入到对应数据库
下面两个二选一:
第一个注意不能切出terminal,不然就断开了,但是可以直观的看到运行日志
java -jar ruoyiadmin.jar
第二个切出去也是一直在运行的,但是看不到运行的日志,日志会自动写入nohup.out文件
nohup java -jar ruoyiadmin.jar &
看一下使用情况
pgrep -list "java"
看到使用该端口号的是哪个pid
kill -9 对应的pid
https://techglimpse.com/failed-metadata-repo-appstream-centos-8/