Loading

邢栋博客

centos7下安装gitlab问题总结

问题:执行 systemctl start postfix Job for postfix.service failed because the control process exited with error code. See "systemctl status postfix.service" and "journalctl -xe" for details. 解决方法 vim /etc/postfix/main.cf myhostname = mail.flycoder.cn mydomain = fl...

centos7下安装gitlab并修改访问端口

官网安装说明 https://about.gitlab.com/install/#centos-7 1.第一步 sudo yum install -y curl policycoreutils-python openssh-server sudo systemctl enable sshd sudo systemctl start sshd sudo firewall-cmd --permanent --add-service=http sudo systemctl reload firewalld 2.第二步 sudo yum install post...

springboot2.X集成es5.5

pom.xml修改 1.修改内容 <properties> <java.version>1.8</java.version> <elasticsearch.version>5.5.2</elasticsearch.version> </properties> 2.修改内容 <!-- ES elasticsearch --> <dependency> <groupId>org.elasticsearch.client</groupId&g...

windows和mac下安装java并配置路径

进入 https://www.oracle.com/technetwork/java/javase/downloads/index.html 下载对应的平台+版本的安装包 WINDOWS平台下 公用JRE 不用安装 我的电脑--属性--高级系统设置 --环境变量 配置环境遍历 JAVA_HOME D:\Program Files\Java\jdk1.8.0_201 PATH 加入 D:\Program Files\Java\jdk1.8.0_201\bin CLASSPATH .;D:\Program Files\Java\jdk1.8.0_201\li...

Elasticsearch的基本用法(增删改查)

基础概念 索引--含有相同属性的文档集合 类型--索引可以定义一个或者多个类型,文档必须属于一个类型 文档--文档是可以被索引的基础数据单位 分片--每个索引都有多个分片,每个分片是一个Lucence索引 备份--拷贝一份分片就完成了分片的备份 基本用法 RESTFul API API基本格式 http://ip:port/索引/类型/文档id; 常用HTTP动词 GET/PUT/POST/DELETE 创建索引 1.非结构化创建 查看索引信息mappings为空{} 2.结构化创建 利用elasticsearch-head创建 复合查询 http:/...

Elasticsearch的单实例以及分布式安装

单实例安装 1.下载地址 https://www.elastic.co/cn/downloads/elasticsearch&nbsp; 2.下载完解压后 Run bin/elasticsearch (or bin\elasticsearch.bat on Windows) bin/elasticsearch -d 后台启动 Run curl http://localhost:9200/ or Invoke-RestMethod http://localhost:9200 with PowerShell 3.视图插件安装 https://git...

WINDOWS下elasticsearch-head创建索引后显示Unassigned/yellow问题

查询各种资料后说是硬盘剩余空间过少的原因,我的硬盘容量使用已经快大于90%了 通过这个链接可以查看 http://localhost:9200/_cat/allocation?v 1.调整硬盘利用率 http://localhost:9200/_cluster/setting 发送put请求,可以利用postman软件 { "transient":{ "cluster.routing.allocation.disk.watermark.low": "90%" } } 2.或者更高数据保存路径 p...

mysql之group_concat()函数

1、功能 将group by产生的同一个分组中的值连接起来,返回一个字符串结果。 2、语法 group_concat( [distinct] 要连接的字段 [order by 排序字段 asc/desc ] [separator '分隔符'] ) 说明:通过使用distinct可以排除重复值;如果希望对结果中的值进行排序,可以使用order by子句;separator是一个字符串值,缺省为一个逗号。 3、举例 表 table_a ,字段 id name cid 表 table_b ,字段 id title 表 table_b 的 id 对应 table...

解决页面加载防盗链图片失败问题

在页面head标签内加入 referer的metedata属性可设置content属性值为以下集合: 1.never 2.always 3.origin 说明: 如果referer-policy的值为never:删除http head中的referer; 如果referer-policy的值为default:如果当前页面使用的是https协议,而正要加载资源使用的是普通的http协议,则将http header中额referer置为空; 如果referer-policy的值origin:只发送origin部分; 如果referer-policy的值为a...

SpringBoot项目打包简记

项目目录 first-app-demo 模型层:model 持久层:persistence 表示层:web 把 jar 修改成 pom,默认是 jar pom.xml(first-app-demo) 模型层:model 持久层:persistence 表示层:web web 依赖于 persistence ,persistence 依赖于 model web Controller ->UserRepository -> User jar打包方式 cd D:\JAVA_PROJECT\first-app-demo 在pom.xml(fisrt-...