早上在服务器上安装elasticsearch集群,在其中的一台上面安装好elasticsearch之后安装了一些插件,其中一个插件是marvel,结果可能是新版本不支持这个插件,就没有安装成功,也就索性没管,安装了head和kopf插件,安装完之后改了一下配置文件 systemctl restart elasticssearch重启,结果却报错了,报错如下: [2017-03-15 14:58:42,874][WARN ][bootstrap ] Unable to lock JVM Memor…
WARN - The configuration 'zookeeper.connect' was supplied but isn't a known config.WARN - The configuration 'input.topic' was supplied but isn't a known config.WARN - Bootstrap broker ip:9092 disconnected       WARN - Bootstrap broker ip:9092 disconn…
安装elasticsearch报错如下: [2019-01-14T03:57:16,453][ERROR][o.e.b.Bootstrap ] [ip-172-31-30-62.ec2.internal] node validation exception [1] bootstrap checks failed [1]: memory locking requested for elasticsearch process but memory is not locked 所以就去网上查找资料,发…
今天尝试更新了下虚拟机CentOS中的python版本后. 运行“yum”命令,就报错:“sudo: unable to execute /bin/yum: No such file or directory” 查询了下网上的资料发现,原来yum调用是用python写的.遂想起刚刚更新python版本,忘了修改yum配置文件了. 解决办法:修改yum配置文件  [root@localhost ~]#vim /usr/bin/yum 把文件头部的#!/usr/bin/python改成#!/usr/…
由于更换硬盘没有删除系统自启动读取挂载硬盘导致系统报错:fsck.ext4 unable to resolve 'UUID=a4a7a0f7-b54f-4774-9fb1' 此时进入系统已root模式进去就只是只读的模式: 启动进入系统: cat /etc/fstab UUID=a4a7a0f7-b54f-4774-9fb1 对应的是/data   系统现在是只读状态: mount -o remount rw / chmod a+rw /etc/fstab vi /etc/fstab 删除UUI…
打开终端,执行命令: 1.sudo chown -R XXX /usr/local  (XXX表示当前用户名) 2.ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" 提示报错: warning: unable to access '/Users/lucky/.config/git/attributes': Permission denied 出现此问题的原因…
问题:在内网测试的时候可以正常访问,但是部署到外网上客户端连接elasticsearch报错:None of the configured nodes are available: [] 原因:默认情况下,ElasticSearch使用0.0.0.0地址,并为http传输开启9200-9300端口,为节点到节点的通信开启9300-9400端口,部署到外网修改修改elasticsearch.yml配置 操作: 修改elasticsearch.yml 将network.host.transport.…
ERROR: [1] bootstrap checks failed [1]: max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144] 解决: 在宿主机执行: sysctl -w vm.max_map_count=262144 原因: vm.max_map_count参数,是允许一个进程在VMAs拥有最大数量(VMA:虚拟内存地址, 一个连续的虚拟地址空间),当进程占用…
Elasticsearch 报错: Fielddata is disabled on text fields by default. Set `fielddata=true` on [`your_field_name`] in order to load fielddata in memory by uninverting the inverted index. Note that this can however use significant memory. 解决:https://www.e…
Springboot整合Elasticsearch报错 今天使用SpringBoot整合Elasticsearch时候,相关的配置完成后,启动项目就报错了. nested exception is java.lang.IllegalStateException: availableProcessors is already set to [4], rejecting [4] 我网上查询了一下,有人是是因为整合了Redis的原因.但是我把Redis相关的配置去掉后,问题还是没有解决,最后有人说是因…
初次用IE浏览器运行自动化程序时,报错:selenium.common.exceptions.WebDriverException: Message: Unexpected error launching Internet Explorer. Protected Mode settings are not the same for all zones. Enable Protected Mode must be set to the same value (enabled or disabled…
1.配置xshell,查看虚拟机中ubuntu中网络ip ifconfig 报错 Command 'ifconfig' not found, but can be installed with: sudo apt install net-tools 没有这个工具需要安装 net-tools 2.安装net-tools,报错 sudo apt install net-tools 注意:ubuntu 高版本,比如18..,都是apt,而不是apt-get 报错信息: E: Could not get…
修改elasticsearch.yml配置文件,允许外网访问. vim config/elasticsearch.yml# 增加 network.host: 0.0.0.0 启动失败,检查没有通过,报错 [2018-05-18T17:44:59,658][INFO ][o.e.b.BootstrapChecks    ] [gFOuNlS] bound or publishing to a non-loopback address, enforcing bootstrap checksERROR…
19/06/14 10:44:58 WARN common.Util: Path /opt/hadoopdata/hdfs/name should be specified as a URI in configuration files. Please update hdfs configuration. 19/06/14 10:44:58 WARN common.Util: Path /opt/hadoopdata/hdfs/name should be specified as a URI…
解决方法: 通过sh find-in-jars 'HlsSampler' -d /data/apache-jmeter-3.0/lib/ext/确定这个class文件在哪个jar包 由于find-in-jars在linux平台使用,所以讲jmeter的jar包上传至linux平台 查询结果如下: 再重启jmeter 问题解决 JMeter3.0 jdk1.8启动报错 备份这个jar…
本地运行spark报错 18/12/18 12:56:55 WARN Utils: Service 'sparkDriver' could not bind on port 0. Attempting port 1.18/12/18 12:56:55 WARN Utils: Service 'sparkDriver' could not bind on port 0. Attempting port 1.18/12/18 12:56:55 WARN Utils: Service 'sparkDr…
1 问题:ERROR: bootstrap checks failed max file descriptors [4096] for elasticsearch process likely too low, increase to at least [65536] max number of threads [1024] for user [lishang] likely too low, increase to at least [2048] vi /etc/security/limits…
今天修改nginx配置文件nginx.conf之后,启动nginx就会报错.经仔细检查是重复配置了 server元素导致, 当nginx检测到重复的 server_name item.test.com,就会报这个错 [warn] conflicting server name "www.test.com" on 0.0.0.0:80, ignored server { listen 80; server_name item.test.com; access_log /export/se…
我用的是elasticsearch2.4.0,在修改完配置文件就出现类似格式 expected <block end>, but found BlockMappingStart......的报错 经过网上搜索发现是格式问题,在配置文件中vim /etc/elasticsearch/elasticsearch.yml中. 每个配置行前需要有空格 每个':'两边需要有空格 数组中间加空格 还有注释掉的参数不能在#后边加空格不然报错…
could not find java; set JAVA_HOME or ensure java is in PATH 首先需要安装java 1.yum list installed |grep java  查看当前有没有装 有的话先卸载 yum -y remove java-1.8.0-openjdk*        *表时卸载所有openjdk相关文件输入 yum -y remove tzdata-java.noarch         卸载tzdata-java 安装java yum  …
报错信息: Warning:Unable to make the module: reading, related gradle configuration was not found. Please, re-import the Gradle project and try again 解决办法: 开启步骤:View -> Tool Windows -> Gradle 点击refesh解决 不行的话你再看看,我是这样解决的,谢谢.…
报错信息 Caused by: java.nio.file.AccessDeniedException: /usr/share/elasticsearch/data/nodes 问题分析 表面上是说容器目录的权限不够,实际是宿主机的权限不够,给宿主机赋予权限 解决办法 chmod 777 /dockerImgInstance/elasticsearch/data chmod 777 /dockerImgInstance/elasticsearch/plugins…
Django 执行迁移生成表: python manage.py migrate 报错: raise MigrationSchemaMissing("Unable to create the django_migrations table (%s)" % exc) 原因: Django2.1不再支持MySQL5.5,必须5.6版本以上 解决办法: 二选一 (1)Django降级到2.0 pip install Django==2.0.0 -i https://pypi.douban.c…
错误1: .d.e.r.s.AbstractElasticsearchRepository : failed to load elasticsearch nodes : org.elasticsearch.client.transport.NoNodeAvailableException: None of the configured nodes are available: [] 次报错是由于配置文件application.properties里面打开了一下注释 spring.data.ela…
[参考资料] https://stackoverflow.com/questions/8329485/unable-to-find-remote-helper-for-https-during-git-clone 问题现象: git clone https://xxxxx 报错:git fatal: Unable to find remote helper for 'https' 一般都是因为缺少了 curl-devel. 所以,可以先安装 curl-devel,然后重新编译安装git $ yu…
简介 使用ES过程中遇到一个Request cannot be executed; I/O reactor status: STOPPED 的异常,大概意思是和server端的连接异常终止了.开始以为是引用的版本不对,或者自己使用问题,后来发现就是因为OOM导致程序宕机,进而引发连接终止. 环境 功能 SpringBoot 的程序通过 SpringDataElasticsearch 访问ES-server 获取数据. ES-SERVER 版本:7.15.2 ES-CLIENT ES-CLIENT…
TL;DRs 这个错误的原因和HTTPS的代理配置有关,使用SSH方式连接可以避免这一问题 最近git pull和push的时候总是报错 fatal: unable to access 'https://github.com/xx/xx.git/': Proxy CONNECT aborted 试了几种方法,都不太行.但是发现了一个绕过的方法:把连接方式改为SSH 然后尝试 git pull git@github.com/xx/xx.git/ 发现即使不连梯子也可以正常拉取和推送. 然后把.gi…
上篇博文讲到简易配置 proxool 连接池:http://www.cnblogs.com/linnuo/p/7232380.html 由于把说明注释留在了 proxool.xml 配置文件里导致配置后报错,原因如下: hibernate.cfg.xml 代码片段: <session-factory> <property name="show_sql">true</property> <property name="generate_…
1.报错信息: 2.本地查看是否Git使用了代理 git config --global http.proxy 3.取消代理 git config --global --unset http.proxy…
报错信息如下 max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144] 临时解决办法(重启虚拟机会失效): 1.切换到root用户,执行命令: sysctl -w vm.max_map_count=262144 2.查看结果: sysctl -a|grep vm.max_map_count 3.显示: vm.max_map_count = 262144 永久解决办法 在/…