我之前安装的ColdFusion 10多服务器安装已正常运行。当我创建一个新实例时,通过ColdFusion Administrator,选中“Create Windows Service”,一切似乎都顺利;新实例显示在Administrator中,并且在服务器上创建了新的目录结构,但新实例将无法启动。如果我转到服务器上的Windows服务面板,并尝试手动启动新服务,我会得到:
Windows could not start the ColdFusion 10 Application Server newServer on Local
Computer. For more information, review the System Event Log. If this is a
non-Microsoft service, contact the service vendor and refer to the service
specific error code 2.
Windows系统事件日志包含以下内容:
The ColdFusion Application Server newServer service terminated with non-specific
error. The system cannot find the file specified.
我已经在网站和Adobe网站上搜索了一个解决方案,但空手而归。我很感激任何见解。
提前致谢。
从评论中更新
从命令提示符启动服务我看到此错误:
C:\ColdFusion10\newServer\bin>coldfusion.exe -start -console
ERROR: transport error 202: bind failed: Address already in use
ERROR: JDWP Transport dt_socket failed to initialize,
TRANSPORT_INIT(510) JDWP exit error AGENT_ERROR_TRANSPORT_INIT(197):
No transports initialized [../. ./../src/share/back/debugInit.c:741]
FATAL ERROR in native method: JDWP No transports initialized,
jvmtiError=AGENT_E RROR_TRANSPORT_INIT(197)
答案 0 :(得分:7)
这可能是一个端口冲突问题。您可以查看事件查看器日志。请尝试以下方法: -
如果出现错误信息,请分享同样的信息。
答案 1 :(得分:2)
此错误实际上是由调试器中的端口号冲突引起的。参考ColdFusion管理员界面==>调试和记录==>调试器设置。必须将调试器端口设置为每个服务器实例的唯一值。如果两个或多个实例设置为相同的值,则会导致端口冲突。
答案 2 :(得分:1)
这对我有用。首先,如果您在Windows环境中使用
netstat -ano
获取正在使用的端口列表。然后,打开 c:\ ColdFusion11 {instancename} \ bin \ jvm.config并在JVM参数中找到端口地址,如果端口不是唯一的,则将其更改为。然后从命令行启动CF,如下所示:
c:\ coldfusion11 {instancename} \ bin \ coldfusion.exe -start -console
现在应该正确启动或指出是否仍有问题。
答案 3 :(得分:0)
在系统更新后,我的本地Dev安装发生了这种情况。我只是尝试将默认端口从8500更改为8501并且它有效。
答案 4 :(得分:0)
也许我可以免于遭受其他我未明确授权的更新的困扰。...这是我的情况的解决之道...
PC上的JRE版本已更新,并且与CF设置JRE版本不同步...
JRE on PC and CF Settings out of sync...
解决方案:将jvm.config文件更新为具有与我的PC上的版本相同的JRE版本号,启动了CF服务,而Bob是你的叔叔。