上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 21 下一页
摘要: git config --global credential.helper store git credential-store store protocol=http host=10.24.21.1 username=xxx password=xxx 参考: https://unix.stacke 阅读全文
posted @ 2020-01-10 15:05 wolbo 阅读(579) 评论(0) 推荐(0) 编辑
摘要: 环境 centos 7 dotnet core 2.1.4 错误信息: libgit2-xxxxxxx: cannot open shared object file: No such file or directory 原因: 找不到动态库 libgit2-xxxxxxx.so libgit2-x 阅读全文
posted @ 2020-01-10 11:26 wolbo 阅读(236) 评论(0) 推荐(0) 编辑
摘要: 95% emitting index-html-webpack-plugin Cannot read property 'default' of undefinedTypeError: Cannot read property 'default' of undefined at compiler.h 阅读全文
posted @ 2020-01-07 15:43 wolbo 阅读(1879) 评论(0) 推荐(0) 编辑
摘要: 1 json string 转 JSONObject try { JSONObject jsonObject = new JSONObject("{\"phonetype\":\"N95\",\"cat\":\"WP\"}"); }catch (JSONException err){ Log.d(" 阅读全文
posted @ 2019-12-28 18:29 wolbo 阅读(4948) 评论(0) 推荐(0) 编辑
摘要: 场景 //防止sql注入 Stream<String> idList =accDocIDList.stream().map((x) -> { if (x.matches("[^a-zA-Z0-9-]")) { //throw new BalanceException("xxx-xxx", "hehe 阅读全文
posted @ 2019-12-28 16:38 wolbo 阅读(2872) 评论(0) 推荐(0) 编辑
摘要: https://sqlbackupandftp.com/blog/how-to-backup-and-restore-postgresql-database 1 备份 pg_dump -v -f gscloud1912 -C -h 10.24.12.143 -U gscloud1912 gsclou 阅读全文
posted @ 2019-12-28 15:04 wolbo 阅读(501) 评论(0) 推荐(0) 编辑
摘要: 1 查找锁表的pid select pid from pg_locks l join pg_class t on l.relation = t.oid where t.relkind = 'r' and t.relname = 'lockedtable'; 2 查找锁表的语句 select pid, 阅读全文
posted @ 2019-12-24 13:41 wolbo 阅读(17748) 评论(0) 推荐(0) 编辑
摘要: 1 How to build maven project without version? 工程pom中增加 <project> ... <build> ... <finalName>${project.artifactId}</finalName> ... </build> ... </proje 阅读全文
posted @ 2019-12-19 13:56 wolbo 阅读(366) 评论(0) 推荐(0) 编辑
摘要: 1 安装nginx sudo apt-get update sudo apt-get install nginx 配置文件 /etc/nginx/nginx.conf 2 安装redis sudo add-apt-repository universe sudo apt-get update sud 阅读全文
posted @ 2019-12-14 00:51 wolbo 阅读(243) 评论(0) 推荐(0) 编辑
摘要: 配置如下 [/gscloud] path = /gscloud browseable = yes writable = yes guest ok = yes read only = no create mask = 0755 原因是 [/gscloud] 前面的/ 去掉之后可以访问了 阅读全文
posted @ 2019-12-13 19:17 wolbo 阅读(1192) 评论(0) 推荐(0) 编辑
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 21 下一页