2021年9月23日

nexus

摘要: 1. docker nexus https://www.jianshu.com/p/edf57ba6a159 (1) docker pull sonatype/nexus3 (2) mkdir -p /data/nexus/data chmod 777 -R /data/nexus/data (3) 阅读全文

posted @ 2021-09-23 06:03 谦虚好学每一天 阅读(62) 评论(0) 推荐(0)

2021年9月22日

gitlab和gitlab-runner

摘要: 1. 删除无效runner 如果在gitlab中删除了runner,需要在gitlab-runner中继续删除: gitlab-runner verify --delete gitlab-runner verify --delete --name xxx 2. 将gitlab-runner 加入do 阅读全文

posted @ 2021-09-22 22:12 谦虚好学每一天 阅读(320) 评论(0) 推荐(0)

2021年9月18日

IDEA

摘要: 1. cannot access configurableapplicationcontext 相关依赖已经导入,但是依旧报这个错误 我这个是spring boot项目中的启动类 然后呢,我找到.iml文件,删掉,就好了,记录一下 2.没有.iml文件 对于idea,当打开文件时发现没有iml文件时 阅读全文

posted @ 2021-09-18 05:18 谦虚好学每一天 阅读(240) 评论(0) 推荐(0)

2021年9月16日

RestTemplate

摘要: 方式一: Map<String, Object> params = new HashMap<>();params.put("appId", "xxx");params.put("appSecret", "yyyyyyyyyy");String url = "http://test.com/sso/o 阅读全文

posted @ 2021-09-16 23:25 谦虚好学每一天 阅读(101) 评论(0) 推荐(0)

2021年9月4日

kingbase

摘要: 1. sql语句 grant all on public.c_account to eia SELECT table_schema || '.' || table_nameFROM information_schema.TABLES WHERE table_schema ='public' sele 阅读全文

posted @ 2021-09-04 14:38 谦虚好学每一天 阅读(281) 评论(0) 推荐(0)

2021年8月30日

docker-compose 安装 和 gitlab安装

摘要: 下载慢:sudo curl -L https://github.com/docker/compose/releases/download/1.25.4/docker-compose-`uname -s`-`uname -m` -o /usr/local/bin/docker-compose改为:su 阅读全文

posted @ 2021-08-30 22:34 谦虚好学每一天 阅读(254) 评论(0) 推荐(0)

Vagrantfile

摘要: # -*- mode: ruby -*-# vi: set ft=ruby : # All Vagrant configuration is done below. The "2" in Vagrant.configure# configures the configuration version 阅读全文

posted @ 2021-08-30 20:27 谦虚好学每一天 阅读(45) 评论(0) 推荐(0)

2021年8月29日

centos7防火墙配置

摘要: firewalld:https://www.cnblogs.com/heqiuyong/p/10460150.html 1、开放端口firewall-cmd --zone=public --add-port=5672/tcp --permanent # 开放5672端口firewall-cmd -- 阅读全文

posted @ 2021-08-29 21:35 谦虚好学每一天 阅读(120) 评论(0) 推荐(0)

2021年8月26日

将springboot打成war包

摘要: 1. pom.xml(1)修改依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> 改为: <depende 阅读全文

posted @ 2021-08-26 15:19 谦虚好学每一天 阅读(244) 评论(0) 推荐(0)

2021年8月22日

npm 专用

摘要: npx 安装 vue$ npx @vue/cli create hello-vue npx 安装 react$ npx create-react-app hello-react 查看全局安装的包npm list -gnpm list -g --depth 0 npm ls natives查看包的引用 阅读全文

posted @ 2021-08-22 18:32 谦虚好学每一天 阅读(16) 评论(0) 推荐(0)

导航