ColdFusion 11 crash

I was messing around with a class course in my CF11 admin due to a project I am working on and I managed to minimize the server to the point where the only thing I get is a nice blue screen with a 500 error.I checked the logs and I I'll put everything I can at the bottom of the post, but I hope someone enlightens me so I don't have to reinstall CF because I'm on an AMA AMAZON instance and I don't even know if I can do it ( haven't checked yet).

"Error","localhost-startStop-2","12/12/14","13:12:22",,""
"Error","localhost-startStop-2","12/12/14","13:12:22",,"The XML-RPC service is not available. This exception is usually caused by service startup failure. Check your server configuration."
"Error","localhost-startStop-2","12/12/14","13:12:22",,"The Metrics service is not available. This exception is usually caused by service startup failure. Check your server configuration."
"Error","localhost-startStop-2","12/12/14","13:12:22",,"The ClientScope service is not available. This exception is usually caused by service startup failure. Check your server configuration."
"Error","localhost-startStop-2","12/12/14","13:12:22",,"The Runtime service is not available. This exception is usually caused by service startup failure. Check your server configuration."
"Error","localhost-startStop-2","12/12/14","13:12:22",,"The Solr service is not available. This exception is usually caused by service startup failure. Check your server configuration."
"Error","localhost-startStop-2","12/12/14","13:12:22",,"The MailSpool service is not available. This exception is usually caused by service startup failure. Check your server configuration."
"Error","localhost-startStop-2","12/12/14","13:12:22",,"The DataSource service is not available. This exception is usually caused by service startup failure. Check your server configuration."
"Error","localhost-startStop-2","12/12/14","13:12:22",,"The Debugging service is not available. This exception is usually caused by service startup failure. Check your server configuration."
"Error","localhost-startStop-2","12/12/14","13:12:22",,"The Security service is not available. This exception is usually caused by service startup failure. Check your server configuration."
"Error","localhost-startStop-2","12/12/14","13:12:22",,""
"Error","localhost-startStop-2","12/12/14","13:12:22",,"The DotNet service is not available. This exception is usually caused by service startup failure. Check your server configuration."
"Error","localhost-startStop-2","12/12/14","13:12:22",,"The WatchService service is not available. This exception is usually caused by service startup failure. Check your server configuration."
"Error","localhost-startStop-2","12/12/14","13:12:22",,"The Monitoring service is not available. This exception is usually caused by service startup failure. Check your server configuration."
"Error","localhost-startStop-2","12/12/14","13:12:22",,"The Runtime service is not available. This exception is usually caused by service startup failure. Check your server configuration."

      

This is my jvm file

#
# VM configuration
#
# Where to find JVM, if {java.home}/jre exists then that JVM is used
# if not then it must be the path to the JRE itself

java.home=C:\\ColdFusion11\\jre

#
# If no java.home is specified a VM is located by looking in these places in this
# order:
#
#  1) ../runtime/jre
#  2) registry (windows only)
#  3) JAVA_HOME env var plus jre (ie $JAVA_HOME/jre)
#  4) java.exe in path
#

# Arguments to VM
java.args=-server  -Xms256m -Xmx1024m -XX:MaxPermSize=192m -XX:+UseParallelGC -Xbatch -Dcoldfusion.home={application.home} -Dorg.eclipse.jetty.util.log.class=org.eclipse.jetty.util.log.JavaUtilLog -Duser.language=en -Dcoldfusion.rootDir={application.home} -Dcoldfusion.libPath={application.home}/lib -Dorg.apache.coyote.USE_CUSTOM_STATUS_MSG_IN_HEADER=true -Dcoldfusion.jsafe.defaultalgo=FIPS186Random -Dcoldfusion.classPath={application.home}/lib/updates,{application.home}/lib,{application.home}/lib/axis2,{application.home}/gateway/lib/,{application.home}/wwwroot/WEB-INF/flex/jars,{application.home}/wwwroot/WEB-INF/cfform/jars,C:\\ColdFusion11\\jre\\lib

# Comma separated list of shared library path
java.library.path={application.home}/lib,{application.home}/jintegra/bin,{application.home}/jintegra/bin/international,{application.home}/lib/oosdk/classes/win

# Comma separated list of shared library path for non-windows
java.nixlibrary.path={application.home}/lib

java.class.path={application.home}/lib/oosdk/lib,{application.home}/lib/oosdk/classes

      

+3


source to share


1 answer


I am assuming you edited the classpath through CF admin? If so, find the jvm.config file Adam mentioned and restore it from a backup or other stock installation.

You do not appear to have specified the type of ColdFusion installation or the operating system of your AMI instance. My standalone ColdFusion 11 installed on Windows 7 contains the jvm.config:

C: \ ColdFusion11 \ cfusion \ Bin \ jvm.config



And the content looks like this. Don't just copy it in bulk as you may not have the same paths or memory settings as I did. However, you can use it as a reference point for comparison. Sorry, I would just put this as a comment, but the file was too big for that.

#
# VM configuration
#
# Where to find JVM, if {java.home}/jre exists then that JVM is used
# if not then it must be the path to the JRE itself

java.home=C:\\ColdFusion11\\jre

#
# If no java.home is specified a VM is located by looking in these places in this
# order:
#
#  1) ../runtime/jre
#  2) registry (windows only)
#  3) JAVA_HOME env var plus jre (ie $JAVA_HOME/jre)
#  4) java.exe in path
#

# Arguments to VM

java.args=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5005 -server -Xms256m -Xmx512m -XX:MaxPermSize=192m -XX:+UseParallelGC -Xbatch -Dcoldfusion.home={application.home} -Dorg.eclipse.jetty.util.log.class=org.eclipse.jetty.util.log.JavaUtilLog -Djava.awt.headless=true -Duser.language=en -Dcoldfusion.rootDir={application.home} -Djava.security.policy={application.home}/lib/coldfusion.policy -Djava.security.auth.policy={application.home}/lib/neo_jaas.policy  -Dcoldfusion.classPath={application.home}/lib/updates,{application.home}/lib,{application.home}/lib/axis2,{application.home}/gateway/lib/,{application.home}/wwwroot/WEB-INF/cfform/jars,{application.home}/wwwroot/WEB-INF/flex/jars,{application.home}/lib/oosdk/lib,{application.home}/lib/oosdk/classes -Dcoldfusion.libPath={application.home}/lib -Dorg.apache.coyote.USE_CUSTOM_STATUS_MSG_IN_HEADER=true -Dcoldfusion.jsafe.defaultalgo=FIPS186Random

# Comma separated list of shared library path

java.library.path={application.home}/lib,{application.home}/jintegra/bin,{application.home}/jintegra/bin/international,{application.home}/lib/oosdk/classes/win

# Comma separated list of shared library path for non-windows

java.nixlibrary.path={application.home}/lib

java.class.path={application.home}/lib/oosdk/lib,{application.home}/lib/oosdk/classes

      

+6


source







All Articles