<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Cranky Bit &#187; ColdFusion cf9 troubleshooting</title>
	<atom:link href="http://blog.crankybit.com/tag/coldfusion-cf9-troubleshooting/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.crankybit.com</link>
	<description>Take a byte out of tech!</description>
	<lastBuildDate>Wed, 09 Mar 2011 17:23:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Line Debugging Causes CF to Not Start</title>
		<link>http://blog.crankybit.com/line-debugging-causes-cf-to-not-start/</link>
		<comments>http://blog.crankybit.com/line-debugging-causes-cf-to-not-start/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 18:01:24 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
				<category><![CDATA[Adobe]]></category>
		<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[ColdFusion cf9 troubleshooting]]></category>

		<guid isPermaLink="false">http://blog.crankybit.com/?p=335</guid>
		<description><![CDATA[So you go to turn on line debugging in ColdFusion, and when you save your changes, it warns you that the ColdFusion service will fail to start if the debugging port is already in use. Great, but what do you do if this actually happens? I was at a loss for a few minutes on [...]]]></description>
			<content:encoded><![CDATA[<p>So you go to turn on line debugging in ColdFusion, and when you save your changes, it warns you that the ColdFusion service will fail to start if the debugging port is already in use. Great, but what do you do if this actually happens?</p>
<p>I was at a loss for a few minutes on how to get ColdFusion started again so that I could fix the issue. Well, the configuration change is in your ColdFusion installation under ~/runtime/bin/jvm.config. So on a typical Windows installation, it may be c:\coldfusion9\runtime\bin\jvm.config. </p>
<p><strong><em>Note: Before proceeding, it is always good practice to make a copy of the config file before editing it.</em></strong></p>
<p>In jvm.config, there is an &#8220;Arguments to VM&#8221; section that has a java.args setting that may start with something like this:</p>
<p><font face="courier new, courier, mono">java.args=-Xdebug -Xrunjdwp:transport=dt_socket, server=y, suspend=n, address=5095 -server -Xmx512m</font></p>
<p><em>(There will likely be many more arguments as well.)</em></p>
<p>The first two arguments contain the debugging settings that are probably preventing ColdFusion from starting. Remove the <font face="courier new, courier, mono">-Xdebug</font> and<br />
<font face="courier new, courier, mono">-Xrunjdwp:transport</font> arguments, so that the beginning of the line will now look like this:</p>
<p><font face="courier new, courier, mono">java.args=-server -Xmx512m</font> <em>(and additional arguments&#8230;)</em></p>
<p>This will be enough to get ColdFusion to start up. You can then go into ColdFusion Administrator to either change the debugging port or turn off the line debugging.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.crankybit.com/line-debugging-causes-cf-to-not-start/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

