文章列表
服务不支持 chkconfig 的解决办法
在chkconfig --add servername的时候老是提示服务不支持 chkconfig 经过查找,解决办法如下。
示例,auto_run的前三行如下:
#!/bin/sh
#chkconfig: 2345 80 90
#description:auto_run
第一行,告诉系统使用的shell,所以的shell脚本都是这样。
第 二行,chkconfig后面有三个参数2345,80和90告诉chkconfig程序,需要在rc2.d~rc5.d目录下,创建名字为 S80auto_run的文 ...
java.rmi.UnmarshalException: error unmarshalling return; nested exception is: at sun.rmi.registry.RegistryImpl_Stub.lookup(Unknown Source) at
缺少
<dependency>
<groupId>springframework</groupId>
<artifactId>spring-remoting</artifactId>
<version>1.2.6< ...