上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 17 下一页
摘要: 今天重启Kibana容器,结果启动不了,一看日志发现是Data数据量太大报错。 数据量太大导致内存不足,可以设置fielddata的内存限制,默认60% curl -u elastic -XPUT "ip:port/_cluster/settings" -H 'Content-Type: appli 阅读全文
posted @ 2019-10-12 10:37 尽 阅读(8700) 评论(0) 推荐(0) 编辑
摘要: 1.生成密钥 ssh-keygen -t rsa -C "<填写自己方便识别的注释>" -b 4096 没什么问题就执行三次空格。 三次问题是1.填入生成密钥对的路径名字。2 填入自定义passphrsa。3确认。 静默模式,不需要回车生成密钥 ssh-keygen -t rsa -N '' -f 阅读全文
posted @ 2019-10-11 14:18 尽 阅读(531) 评论(0) 推荐(0) 编辑
摘要: ps -ef | grep **.sh |grep -v grep | awk '{print $2}' | xargs kill -9 阅读全文
posted @ 2019-10-11 08:46 尽 阅读(397) 评论(0) 推荐(0) 编辑
摘要: 前言 当前数据库为:mysql由于mysql和oracle不太一样,不支持直接的sequence,所以需要创建一张table来模拟sequence的功能,理由sql语句如下: 步骤 1.创建sequence表 2.创建取当前值的函数 3.创建取下一个值函数 4.创建更新当前值函数 数据库结构 调用 阅读全文
posted @ 2019-10-10 09:10 尽 阅读(7672) 评论(0) 推荐(0) 编辑
摘要: test项目在gitlab的http请求的url: http://gitlab.com/test.git 用以下方式请求不需要再输入用户名和密码 git clone http://username:password@gitlab.com/test.git 密码不要包含@/等特殊符号,会跟后面的@gi 阅读全文
posted @ 2019-10-09 14:55 尽 阅读(14717) 评论(0) 推荐(2) 编辑
摘要: 由于我这里要把接口返回的日志不断地新增到textarea里,想实现自动滚动日志的效果。 1.首先定一个textarea类型的input组件 2.每次新增内容都要调用 阅读全文
posted @ 2019-10-09 10:55 尽 阅读(1893) 评论(2) 推荐(0) 编辑
摘要: axios.js 阅读全文
posted @ 2019-10-01 12:33 尽 阅读(6131) 评论(0) 推荐(0) 编辑
摘要: vue.config.jsmodule.exports = { devServer: { proxy: { "/api": { target: "http://192.168.0.103:9876", changOrigin: true, pathRewrite: {"^/api" : ""} } } } } 阅读全文
posted @ 2019-10-01 12:32 尽 阅读(550) 评论(0) 推荐(0) 编辑
摘要: //方式一 public static String ReadAsChars(HttpServletRequest request) { BufferedReader br = null; StringBuilder sb = new StringBuilder(""); try { br = request.getReader(); String str; while ((str = br.re 阅读全文
posted @ 2019-09-30 12:38 尽 阅读(4784) 评论(0) 推荐(0) 编辑
摘要: import com.alibaba.fastjson.JSONObject; public class JsonTest { public static void main(String[] args) { // json串(以自己的为准) String str = "{"id":"75","shoppingCartItemList":[{"id":"4... 阅读全文
posted @ 2019-09-30 12:35 尽 阅读(13105) 评论(0) 推荐(1) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 17 下一页