1.echo wchp | nc localhost 2181 ,通过路径列出服务器 watch 的详细信息,且它会输出一个与 session 相关的路径.但是出现下面的错误. [root@xg61 conf]# echo wchp | nc localhost 2181 wchp is not executed because it is not in the whitelist. 2.cd /usr/local/zookeeper/conf下,用vim打开zoo.cfg,在最后添加: 4lw…
在使用四字命令或者zk ui界面查看zookeeper集群时,出现如下提示: stat is not executed because it is not in the whitelist. envi is not executed because it is not in the whitelist. 解决办法 # nc命令需要安装其他软件 yum install nmap-ncat # envi命令执行报错提示:envi is not executed because it is not i…
zookeeper.out报错: 2016-12-10 18:05:46,958 [myid:3] - WARN  [NIOServerCxn.Factory:0.0.0.0/0.0.0.0:2181:NIOServerCnxn@362] - Exception causing close of session 0x0 due to java.io.IOException: ZooKeeperServer not running 2016-12-10 18:05:46,958 [myid:3]…
zookeeper报错java.net.ConnectException: Connection refused: no further information 这是在linux 启动 https://blog.csdn.net/laychityun/article/details/81980596   具体异常信息: java.net.ConnectException: Connection refused: no further information at sun.nio.ch.Socke…
今天在为新的业务线搭架数据库后,在启动的时候报错 root@qsbilldatahis-db01:/usr/local/mysql/bin# ./mysql ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2) 在此记录一下,希望能够给遇到此问题的兄弟们提供一个解决问题的思路,有了思路后一步一步排查问题就比较容易了,但是我这个问题比较奇怪,如…
今天在使用Idea的时候,发现Idea在整个每次找到错误代码非常不方便(Idea如果类中有错误,没有打开过类并不会提示,比如构建工程后缺少jar包问题).我想快速看到工程哪里出问题类似于eclipse中的problem,能很快的定位到问题出现在哪里. 添加Problems 同时需要把Power Save Mode 模式关闭( 这个顾名思义是省电模式.当你勾选此模式以后,IntelliJ不会给你完成任何自动完成的功能,例如本来你输入一个字符会自动提示的,勾选以后就没有了) 解决Autowired报…
原文 @(报错)could not find the main class, Program will exit(已解决)      (很抱歉,如果你希望能更加清楚地看清图片或是图上的文字的话,你可以按住ctrl不动,然后向上滚动鼠标的滚轮.要改变回来同理向下滚动即可.) -------------------------------------------------------------------- 今天2011.4.20: 这篇文章是我刚接触myeclipse的时候写的,一年过去了,感…
[转]解决Maven报错"Plugin execution not covered by lifecycle configuration" 导入Myabtis源码后,POM文件会报出如下异常: Plugin execution not covered by lifecycle configuration org.sonatype.plugins:jarjar-maven-plugin Plugin execution not covered by lifecycle configura…
vue解决启动报错cjs loader.js Error: Cannot find module '../config'问题 今天下载了一个开源项目一直运行不了,折腾了半天才找到问题所在,config目录下缺少了index.js文件导致的 liurongliurong/vue: vue框架编写的数字碳交易所https://github.com/liurongliurong/vue 18 verbose node v10.1.019 verbose npm v6.5.020 error code…
zookeeper报错: org.I0Itec.zkclient.exception.ZkMarshallingError: java.io.EOFException 主要因为是没有序列化. 可以使用默认的序列化类.如下所示: zkClient.setZkSerializer( new SerializableSerializer()); 但是使用默认的SerializableSerializer()查看节点数据时,有可能会出现乱码. 我们可以通过实现ZkSerialized接口来自定义序列化类…