前言 今天重启了服务器,发现supervisor管理的rabbitmq的进程居然启动失败了,查看日志发现老是报错,记录一下解决的办法. 报错:erlexec:HOME must be set 找了网上的许多人的博客,一般的说法是在进程的启动的脚本中加入: export HOME=/usr/local/erlang export PATH=$PATH:$HOME/bin 系统默认的HONE是/root,可能造成erlang语言环境获取不到HOME参数:上述修改可以用在chkconfig管理和ser…
vue报错 [Vue warn]: Invalid prop: type check failed for prop "name". Expected String with value "4", got Number with value 4. 当出现这个错误原因在于写法上漏了数字和字符串的类型关系 引用了我们定义的数组和变量或者函数 这个问题就是我们点击:name默认的类型是字符串类型,而我们自己定义的是数字类型所以我们需要改一下就好 希望上述能帮到你…
报错: Exception in thread "main" org.apache.ibatis.binding.BindingException: Type interface com.ssm.mapper.NewProductMapper is not known to the MapperRegistry. at org.apache.ibatis.binding.MapperRegistry.getMapper(MapperRegistry.java:47) at org.ap…
原因是:在创建实体类的时候吧date类型写成data导致类型不匹配 Type handler was null on parameter mapping for property 'createTime'. It was either not specified and/or could not be found for the javaType (javax.xml.crypto.Data) : jdbcType (null) combination. Type handler was nul…
在访问管理界面使用guest用户登录时出现login failed错误. 到服务器上查询日志显示出现错误的原因是:HTTP access denied: user ‘guest’ - User can only log in via localhost. 解决: rabbitmq从3.3.0开始禁止使用guest/guest权限通过除localhost外的访问.我的是3.6 如果想使用guest/guest通过远程机器访问,需要在rabbitmq配置文件中(找到/rabbitmq_server-…
写好celery任务文件,使用celery -A app worker --loglevel=info启动时,报告如下错误: [2019-01-29 01:19:26,680: ERROR/MainProcess] consumer: Cannot connect to amqp://sunlight:**@127.0.0.1:5672/celery: [Errno 104] Connection reset by peer.Trying again in 4.00 seconds... 检查了…
出现上面的错误如果不是路径的问题,就应该找环境的问题,我这里的问题是tomcat7+jdk6,应该是jdk7或以后的版本(因为是web socket) 对应的版本http://tomcat.apache.org/whichversion.html 换上jdk7就好了 2.输入地址报错 type Exception report message Servlet.init() for servlet springmvc threw exception description The server e…
1.问题记录 工作流配置画模板的时候保存成功但是部署报错. IE下 activiti工作流解析xml报错 type "path" must be followed by either attribute specifications, ">" or "/>" Chrome和Firefox正常 2.问题定位 2.1 服务端是同一台服务器同一个实例,IE报错,谷歌没报错,先检查比对两个浏览器在服务端的报文 执行:服务端比对IE请求和谷歌…
想使用NSInvocationOperation下载图片,然而并没有下载下来, NSData为nil, 还有报错:(打断点就报错) warning: could not load any Objective-C class information from the dyld shared cache. This will significantly reduce the quality of type information available. 现在这两个问题还没解决, 以后再看吧,先提交到g…
具体错误: No qualifying bean of type [java.lang.String] found for dependency: expected at least 1 bean which qualifies as autowire candidate for this dependency. Dependency annotations: {} 原因: 1.对应要注入的实现类没有 加注解,如dao层 @Repository 如service层 @Service 2."Y…