摘要:
flyway的默认版本那是1,网上的教程脚本都是V1,也没有修改版本配置,导致启动项目不创建表,要么baseline-version: 0 ,要么sql脚本从V2开始 阅读全文
摘要:
在kinaba目录下执行 nohup ./bin/kinaba --allow-root & 即可 ps: 我用nohup ./bin/kinaba --allow-root ->kinaba.log 2>&1 & 命令会导致日志报错,提示npm需要更新,不明觉厉,也没找到原因,有小伙伴找到原因的留 阅读全文
摘要:
admin-server pom <?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 阅读全文
摘要:
@Component public class SearchApi { @Autowired private RestHighLevelClient client; @Autowired @Qualifier("searchListener") private ActionListener list 阅读全文
摘要:
服务器中了挖矿程序怎么,大多数人都是把挖矿程序kill掉,过段时间还会自动运行,它是通过定时脚本去判断的,先说一个最简单的处理方式,让挖矿程序永不执行。 先找到定时任务 crontab -l , 进入对应的路径,里面会有卸载的脚本,直接执行即可。(如果没有的话那应该是另一种挖矿程序,可以联系我) 再 阅读全文
摘要:
目前用到的 1.方法中添加参数 public String getIp(ServerWebExchange serverWebExchange){ ServerHttpRequest request = serverWebExchange.getRequest(); HttpHeaders head 阅读全文
摘要:
安装ElasticSearch, https://www.elastic.co/guide/en/elasticsearch/reference/7.7/install-elasticsearch.html 链接:https://pan.baidu.com/s/1-9lQKqJp1v2BvRad4_ 阅读全文
摘要:
server.port: 默认值:5601 Kibana由附带服务器提供服务,该配置指定使用的端口号。 server.host: 默认值:“ localhost”指定主机服务器的主机地址。 server.basePath: 如果启用了代理,指定Kibana的路径,该配置项只影响Kibana生成的UR 阅读全文
摘要:
linux: curl -O https://artifacts.elastic.co/downloads/kibana/kibana-7.6.2-linux-x86_64.tar.gzcurl https://artifacts.elastic.co/downloads/kibana/kibana 阅读全文
摘要:
Api @Component public class UpdateApi { @Autowired private RestHighLevelClient client; @Autowired @Qualifier("updateListener") private ActionListener 阅读全文