<?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>Build and Release Management</title>
	<atom:link href="http://allscm.com/feed" rel="self" type="application/rss+xml" />
	<link>http://allscm.com</link>
	<description>Build. Release. Profit</description>
	<lastBuildDate>Fri, 29 Mar 2013 19:22:32 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Running Multiple Commands with SSHExec ANT Task</title>
		<link>http://allscm.com/archives/running-multiple-commands-with-sshexec-ant-task.html</link>
		<comments>http://allscm.com/archives/running-multiple-commands-with-sshexec-ant-task.html#comments</comments>
		<pubDate>Fri, 29 Mar 2013 19:18:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ANT]]></category>

		<guid isPermaLink="false">http://allscm.com/?p=622</guid>
		<description><![CDATA[Did you have to figure out how to run multiple commands within the Ant&#8217;s Optional SSHExec task? Here&#8217;s how to do it: &#60;sshexec host=&#8221;${host.name}&#8221; trust=&#8221;true&#8221; username=&#8221;${user}&#8221; password=&#8221;${pw}&#8221; keyfile=&#8221;${optional.keypair}&#8221; command=&#8221;command1 &#38;amp;&#38;amp; command2 &#38;amp; command3&#8243;/&#62; You just basically chain the commands consecutively with &#8220;&#38;amp;&#38;amp;&#8221;]]></description>
				<content:encoded><![CDATA[<p>Did you have to figure out how to run multiple commands within the Ant&#8217;s Optional SSHExec task?</p>
<p>Here&#8217;s how to do it:</p>
<p>&lt;sshexec host=&#8221;${host.name}&#8221; trust=&#8221;true&#8221; username=&#8221;${user}&#8221; password=&#8221;${pw}&#8221; keyfile=&#8221;${optional.keypair}&#8221; command=&#8221;command1 &amp;amp;&amp;amp; command2 &amp;amp; command3&#8243;/&gt;</p>
<p>You just basically chain the commands consecutively with &#8220;&amp;amp;&amp;amp;&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://allscm.com/archives/running-multiple-commands-with-sshexec-ant-task.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apache2 Proxy Disabled Connection on (localhost)</title>
		<link>http://allscm.com/archives/apache2-proxy-disabled-connection-on-localhost.html</link>
		<comments>http://allscm.com/archives/apache2-proxy-disabled-connection-on-localhost.html#comments</comments>
		<pubDate>Tue, 11 Sep 2012 19:59:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Apache]]></category>

		<guid isPermaLink="false">http://allscm.com/?p=607</guid>
		<description><![CDATA[If you ever tried to set a proxy connection where you&#8217;re using Apache to serve as the front-end host for a webapp (via Tomcat) on the same server and you ran into a similar error message: [error] proxy: HTTP: disabled connection for (localhost) -or- [error] ap_proxy_connect_backend disabling worker for (localhost) You can try this to [...]]]></description>
				<content:encoded><![CDATA[<p>If you ever tried to set a proxy connection where you&#8217;re using Apache to serve as the front-end host for a webapp (via Tomcat) on the same server and you ran into a similar error message:</p>
[error] proxy: HTTP: disabled connection for (localhost)<br />
-or-<br />
[error] ap_proxy_connect_backend disabling worker for (localhost)</p>
<p>You can try this to fix it:</p>
<p>sudo /usr/sbin/setsebool -P httpd_can_network_connect 1</p>
]]></content:encoded>
			<wfw:commentRss>http://allscm.com/archives/apache2-proxy-disabled-connection-on-localhost.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rookie Gradle Errors I Made</title>
		<link>http://allscm.com/archives/rookie-gradle-errors-i-made.html</link>
		<comments>http://allscm.com/archives/rookie-gradle-errors-i-made.html#comments</comments>
		<pubDate>Wed, 13 Jun 2012 18:34:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Gradle]]></category>

		<guid isPermaLink="false">http://allscm.com/?p=601</guid>
		<description><![CDATA[This is just a beginning of a long series of posts documenting the rookie mistakes that I&#8217;ve made while getting acquainted with Gradle. Ever received this error? * What went wrong: Could not compile build file &#8216;/path/to/build.gradle&#8217;. &#62; startup failed: build file &#8216;/path/to/build.gradle&#8217;: 4: expecting anything but &#8221;\n&#8221;; got it anyway @ line 4, column [...]]]></description>
				<content:encoded><![CDATA[<p>This is just a beginning of a long series of posts documenting the rookie mistakes that I&#8217;ve made while getting acquainted with Gradle.</p>
<p>Ever received this error?</p>
<blockquote><p>* What went wrong:<br />
Could not compile build file &#8216;/path/to/build.gradle&#8217;.<br />
&gt; startup failed:<br />
build file &#8216;/path/to/build.gradle&#8217;: 4: expecting anything but &#8221;\n&#8221;; got it anyway @ line 4, column 17.<br />
print &#8220;hello, &#8216;<br />
^</p>
<p>1 error</p></blockquote>
<p>What happened was that I had a mix of quote and apostrophe on my &#8216;print&#8217; statement: print <strong>&#8220;</strong>hello, <strong>&#8216;</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://allscm.com/archives/rookie-gradle-errors-i-made.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Set &#8220;ulimit&#8221; parameters to fix &#8220;Too Many Open Files&#8221; Error</title>
		<link>http://allscm.com/archives/set-ulimit-parameters-to-fix-too-many-open-files-error.html</link>
		<comments>http://allscm.com/archives/set-ulimit-parameters-to-fix-too-many-open-files-error.html#comments</comments>
		<pubDate>Thu, 08 Dec 2011 21:16:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Amazon AWS]]></category>

		<guid isPermaLink="false">http://allscm.com/?p=410</guid>
		<description><![CDATA[If you ever run into the following errors with the below stacktrace, there&#8217;s a more than likely easy fix for it at the bottom of this article. java.lang.IllegalStateException: Failed to load ApplicationContext at org.springframework.test.context.TestContext.get ApplicationContext(TestContext.java:308) at org.springframework.test.context.support.DependencyInjection TestExecutionListener.injectDependencies (DependencyInjectionTestExecutionListener.java:109) at org.springframework.test.context.support.DependencyInjection TestExecutionListener.prepareTestInstance (DependencyInjectionTestExecutionListener.java:75) at org.springframework.test.context.TestContextManager.prepareTestInstance (TestContextManager.java:321) at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.createTest (SpringJUnit4ClassRunner.java:211) at org.springframework.test.context.junit4.SpringJUnit4ClassRunner$1. runReflectiveCall(SpringJUnit4ClassRunner.java:287) at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15) at [...]]]></description>
				<content:encoded><![CDATA[<p>If you ever run into the following errors with the below stacktrace, there&#8217;s a more than likely easy fix for it at the bottom of this article.</p>
<blockquote><p>java.lang.IllegalStateException: Failed to load ApplicationContext<br />
at org.springframework.test.context.TestContext.get<br />
ApplicationContext(TestContext.java:308)<br />
at org.springframework.test.context.support.DependencyInjection<br />
TestExecutionListener.injectDependencies</p>
<p>(DependencyInjectionTestExecutionListener.java:109)<br />
at org.springframework.test.context.support.DependencyInjection<br />
TestExecutionListener.prepareTestInstance</p>
<p>(DependencyInjectionTestExecutionListener.java:75)<br />
at org.springframework.test.context.TestContextManager.prepareTestInstance<br />
(TestContextManager.java:321)<br />
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.createTest<br />
(SpringJUnit4ClassRunner.java:211)<br />
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner$1.<br />
runReflectiveCall(SpringJUnit4ClassRunner.java:287)<br />
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15)<br />
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.methodBlock<br />
(SpringJUnit4ClassRunner.java:289)<br />
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild<br />
(SpringJUnit4ClassRunner.java:231)<br />
at com.fmn.testutil.FmnTestClassRunner.runChild(FmnTestClassRunner.java:10)<br />
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:193)<br />
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:52)<br />
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:191)<br />
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:42)<br />
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:184)<br />
at org.springframework.test.context.junit4.statements.RunBeforeTestClassCallbacks.<br />
evaluate(RunBeforeTestClassCallbacks.java:61)<br />
at org.springframework.test.context.junit4.statements.RunAfterTestClassCallbacks.<br />
evaluate(RunAfterTestClassCallbacks.java:70)<br />
at org.junit.runners.ParentRunner.run(ParentRunner.java:236)<br />
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.run<br />
(SpringJUnit4ClassRunner.java:174)<br />
at junit.framework.JUnit4TestAdapter.run(JUnit4TestAdapter.java:39)<br />
at org.gradle.api.internal.tasks.testing.junit.JUnitTestClassExecuter.execute<br />
(JUnitTestClassExecuter.java:51)<br />
at org.gradle.api.internal.tasks.testing.junit.JUnitTestClassProcessor.processTestClass<br />
(JUnitTestClassProcessor.java:63)<br />
at org.gradle.api.internal.tasks.testing.SuiteTestClassProcessor.processTestClass<br />
(SuiteTestClassProcessor.java:49)<br />
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)<br />
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)<br />
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)<br />
at java.lang.reflect.Method.invoke(Method.java:597)<br />
at org.gradle.messaging.dispatch.ReflectionDispatch.dispatch(ReflectionDispatch.java:35)<br />
at org.gradle.messaging.dispatch.ReflectionDispatch.dispatch(ReflectionDispatch.java:24)<br />
at org.gradle.messaging.dispatch.ContextClassLoaderDispatch.dispatch<br />
(ContextClassLoaderDispatch.java:32)<br />
at org.gradle.messaging.dispatch.ProxyDispatchAdapter$DispatchingInvocationHandler.invoke<br />
(ProxyDispatchAdapter.java:75)<br />
at $Proxy4.processTestClass(Unknown Source)<br />
at org.gradle.api.internal.tasks.testing.worker.TestWorker.processTestClass(TestWorker.java:86)<br />
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)<br />
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)<br />
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)<br />
at java.lang.reflect.Method.invoke(Method.java:597)<br />
at org.gradle.messaging.dispatch.ReflectionDispatch.dispatch(ReflectionDispatch.java:35)<br />
at org.gradle.messaging.dispatch.ReflectionDispatch.dispatch(ReflectionDispatch.java:24)<br />
at org.gradle.messaging.remote.internal.MethodInvocationUnmarshallingDispatch.dispatch<br />
(MethodInvocationUnmarshallingDispatch.java:48)<br />
at org.gradle.messaging.dispatch.DiscardOnFailureDispatch.dispatch</p>
<p>(DiscardOnFailureDispatch.java:31)<br />
at org.gradle.messaging.dispatch.AsyncDispatch.dispatchMessages(AsyncDispatch.java:129)<br />
at org.gradle.messaging.dispatch.AsyncDispatch.access$000(AsyncDispatch.java:33)<br />
at org.gradle.messaging.dispatch.AsyncDispatch$1.run(AsyncDispatch.java:69)<br />
at org.gradle.messaging.concurrent.DefaultExecutorFactory$StoppableExecutorImpl$1.run<br />
(DefaultExecutorFactory.java:63)<br />
at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)<br />
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)<br />
at java.lang.Thread.run(Thread.java:662)<br />
Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean</p>
<p>with name &#8216;hadoopInit&#8217; defined in class path resource [testservices/services-test.xml]:</p>
<p>Instantiation of bean failed; nested exception is org.springframework.beans.</p>
<p>BeanInstantiationException: Could not instantiate bean class [com.fmn.hadoop.testutil.HadoopInit]:</p>
<p>Constructor threw exception; nested exception is java.io.IOException: Cannot run program &#8220;bash&#8221;:</p>
<p>java.io.IOException: error=24, Too many open files<br />
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.<br />
instantiateBean(AbstractAutowireCapableBeanFactory.java:965)<br />
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.<br />
createBeanInstance(AbstractAutowireCapableBeanFactory.java:911)<br />
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.<br />
doCreateBean(AbstractAutowireCapableBeanFactory.java:485)<br />
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.<br />
createBean(AbstractAutowireCapableBeanFactory.java:456)<br />
at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject<br />
(AbstractBeanFactory.java:293)<br />
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton<br />
(DefaultSingletonBeanRegistry.java:222)<br />
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean<br />
(AbstractBeanFactory.java:290)<br />
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean<br />
(AbstractBeanFactory.java:192)<br />
at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons<br />
(DefaultListableBeanFactory.java:585)<br />
at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization<br />
(AbstractApplicationContext.java:895)<br />
at org.springframework.context.support.AbstractApplicationContext.refresh<br />
(AbstractApplicationContext.java:425)<br />
at org.springframework.test.context.support.AbstractGenericContextLoader.loadContext<br />
(AbstractGenericContextLoader.java:84)<br />
at org.springframework.test.context.support.AbstractGenericContextLoader.loadContext<br />
(AbstractGenericContextLoader.java:1)<br />
at org.springframework.test.context.TestContext.loadApplicationContext(TestContext.java:280)<br />
at org.springframework.test.context.TestContext.getApplicationContext(TestContext.java:304)<br />
&#8230; 47 more<br />
Caused by: org.springframework.beans.BeanInstantiationException: Could not instantiate bean class</p>
[com.fmn.hadoop.testutil.HadoopInit]: Constructor threw exception; nested exception is java.io.</p>
<p>IOException: Cannot run program &#8220;bash&#8221;: java.io.IOException: error=24, Too many open files<br />
at org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:141)<br />
at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate<br />
(SimpleInstantiationStrategy.java:74)<br />
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateBean<br />
(AbstractAutowireCapableBeanFactory.java:958)<br />
&#8230; 61 more<br />
Caused by: java.io.IOException: Cannot run program &#8220;bash&#8221;: java.io.IOException: error=24, Too many open files<br />
at java.lang.ProcessBuilder.start(ProcessBuilder.java:460)<br />
at org.apache.hadoop.util.Shell.runCommand(Shell.java:200)<br />
at org.apache.hadoop.util.Shell.run(Shell.java:182)<br />
at org.apache.hadoop.fs.DF.getFilesystem(DF.java:63)<br />
at org.apache.hadoop.hdfs.server.namenode.NameNodeResourceChecker.addDirsToCheck</p>
<p>(NameNodeResourceChecker.java:93)<br />
at org.apache.hadoop.hdfs.server.namenode.NameNodeResourceChecker</p>
<p>.(NameNodeResourceChecker.java:73)<br />
at org.apache.hadoop.hdfs.server.namenode.FSNamesystem.initialize(FSNamesystem.java:348)<br />
at org.apache.hadoop.hdfs.server.namenode.FSNamesystem.(FSNamesystem.java:327)<br />
at org.apache.hadoop.hdfs.server.namenode.NameNode.initialize(NameNode.java:271)<br />
at org.apache.hadoop.hdfs.server.namenode.NameNode.(NameNode.java:465)<br />
at org.apache.hadoop.hdfs.server.namenode.NameNode.createNameNode(NameNode.java:1239)<br />
at org.apache.hadoop.hdfs.MiniDFSCluster.(MiniDFSCluster.java:278)<br />
at org.apache.hadoop.hbase.HBaseTestingUtility.startMiniDFSCluster(HBaseTestingUtility.java:225)<br />
at org.apache.hadoop.hbase.HBaseTestingUtility.startMiniCluster(HBaseTestingUtility.java:347)<br />
at org.apache.hadoop.hbase.HBaseTestingUtility.startMiniCluster(HBaseTestingUtility.java:292)<br />
at com.fmn.hadoop.testutil.HadoopInit.(HadoopInit.java:34)<br />
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)<br />
at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)<br />
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance</p>
<p>(DelegatingConstructorAccessorImpl.java:27)<br />
at java.lang.reflect.Constructor.newInstance(Constructor.java:513)<br />
at org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:126)<br />
&#8230; 63 more<br />
Caused by: java.io.IOException: java.io.IOException: error=24, Too many open files<br />
at java.lang.UNIXProcess.(UNIXProcess.java:148)<br />
at java.lang.ProcessImpl.start(ProcessImpl.java:65)<br />
at java.lang.ProcessBuilder.start(ProcessBuilder.java:453)<br />
&#8230; 83 more</p></blockquote>
<p>More often than not this has to do with the default limitation your OS has for concurrent file handles being opened.</p>
<p>Prior to making the changes permanent, you can issue this command:</p>
<blockquote><p>ulimit -n</p></blockquote>
<p>The number it gives you is the system&#8217;s default. Chances are you&#8217;ll need to bump it significantly upward.</p>
<p>You can simply bump this limit by editing the file /etc/security/limits.conf and adding the following lines:</p>
<blockquote><p>* soft nofile 10000<br />
* hard nofile 10000</p></blockquote>
<p>Restart your system then issue this command again to ensure the new limit is correct:</p>
<blockquote><p>ulimit -n</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://allscm.com/archives/set-ulimit-parameters-to-fix-too-many-open-files-error.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>modprobe loop FATAL: Could not load /lib/modules/2.6.16-xenU/modules.dep: No such file or directory</title>
		<link>http://allscm.com/archives/modprobe-loop-fatal-could-not-load-libmodules2-6-16-xenumodules-dep-no-such-file-or-directory.html</link>
		<comments>http://allscm.com/archives/modprobe-loop-fatal-could-not-load-libmodules2-6-16-xenumodules-dep-no-such-file-or-directory.html#comments</comments>
		<pubDate>Fri, 12 Aug 2011 17:16:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Amazon AWS]]></category>
		<category><![CDATA[Cloud Computing]]></category>

		<guid isPermaLink="false">http://allscm.com/?p=351</guid>
		<description><![CDATA[Ever run into an error message like this? modprobe loop FATAL: Could not load /lib/modules/2.6.16-xenU/modules.dep: No such file or directory If you take a peek into the /lib/modules, what do you see? Do you just see this? 2.6.21-1.3194.fc7 You can just simply create a symlink of 2.6.16-xenU to that to stop the error messages: cd [...]]]></description>
				<content:encoded><![CDATA[<p>Ever run into an error message like this?</p>
<blockquote><p>
modprobe loop FATAL: Could not load /lib/modules/2.6.16-xenU/modules.dep: No such file or directory
</p></blockquote>
<p>If you take a peek into the /lib/modules, what do you see?  Do you just see this?</p>
<blockquote><p>
2.6.21-1.3194.fc7
</p></blockquote>
<p>You can just simply create a symlink of 2.6.16-xenU to that to stop the error messages:</p>
<blockquote><p>
cd /lib/modules<br />
ln -s 2.6.16-xenU 2.6.21-1.3194.fc7
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://allscm.com/archives/modprobe-loop-fatal-could-not-load-libmodules2-6-16-xenumodules-dep-no-such-file-or-directory.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>/sbin/mingetty[1823]: tty2: No such file or directory</title>
		<link>http://allscm.com/archives/sbinmingetty1823-tty2-no-such-file-or-directory.html</link>
		<comments>http://allscm.com/archives/sbinmingetty1823-tty2-no-such-file-or-directory.html#comments</comments>
		<pubDate>Fri, 12 Aug 2011 17:10:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Amazon AWS]]></category>
		<category><![CDATA[Cloud Computing]]></category>

		<guid isPermaLink="false">http://allscm.com/?p=348</guid>
		<description><![CDATA[Did you ever get this similar error messages? Aug 12 12:46:39 ip-10-10-10-99 /sbin/mingetty[1736]: tty2: No such file or directory Aug 12 12:46:39 ip-10-10-10-99 /sbin/mingetty[1737]: tty3: No such file or directory Aug 12 12:46:39 ip-10-10-10-99 /sbin/mingetty[1738]: tty4: No such file or directory Aug 12 12:46:39 ip-10-10-10-99 /sbin/mingetty[1739]: tty5: No such file or directory Aug 12 12:46:39 [...]]]></description>
				<content:encoded><![CDATA[<p>Did you ever get this similar error messages?</p>
<blockquote><p>
Aug 12 12:46:39 ip-10-10-10-99 /sbin/mingetty[1736]: tty2: No such file or directory<br />
Aug 12 12:46:39 ip-10-10-10-99 /sbin/mingetty[1737]: tty3: No such file or directory<br />
Aug 12 12:46:39 ip-10-10-10-99 /sbin/mingetty[1738]: tty4: No such file or directory<br />
Aug 12 12:46:39 ip-10-10-10-99 /sbin/mingetty[1739]: tty5: No such file or directory<br />
Aug 12 12:46:39 ip-10-10-10-99 /sbin/mingetty[1740]: tty6: No such file or directory<br />
Aug 12 12:46:44 ip-10-10-10-99 init: Id &#8220;2&#8243; respawning too fast: disabled for 5 minutes<br />
Aug 12 12:46:44 ip-10-10-10-99 init: Id &#8220;3&#8243; respawning too fast: disabled for 5 minutes<br />
Aug 12 12:46:44 ip-10-10-10-99 init: Id &#8220;4&#8243; respawning too fast: disabled for 5 minutes<br />
Aug 12 12:46:44 ip-10-10-10-99 init: Id &#8220;5&#8243; respawning too fast: disabled for 5 minutes<br />
Aug 12 12:46:44 ip-10-10-10-99 init: Id &#8220;6&#8243; respawning too fast: disabled for 5 minutes
</p></blockquote>
<p>What I had to do to resolve this was to edit the /etc/inittab file, more specifically this section:</p>
<blockquote><p>
# Run gettys in standard runlevels<br />
1:2345:respawn:/sbin/mingetty tty1<br />
2:2345:respawn:/sbin/mingetty tty2<br />
3:2345:respawn:/sbin/mingetty tty3<br />
4:2345:respawn:/sbin/mingetty tty4<br />
5:2345:respawn:/sbin/mingetty tty5<br />
6:2345:respawn:/sbin/mingetty tty6
</p></blockquote>
<p>And change that to the following:</p>
<blockquote><p>
# Run gettys in standard runlevels<br />
1:2345:respawn:/sbin/mingetty tty1<br />
2:2345:off:/sbin/mingetty tty2<br />
3:2345:off:/sbin/mingetty tty3<br />
4:2345:off:/sbin/mingetty tty4<br />
5:2345:off:/sbin/mingetty tty5<br />
6:2345:off:/sbin/mingetty tty6
</p></blockquote>
<p>After making the changes, the cleanest way is to reboot but if you prefer not to then you can run this command:</p>
<blockquote><p>
kill -HUP 1
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://allscm.com/archives/sbinmingetty1823-tty2-no-such-file-or-directory.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>svn: The repository at &#8216;&#8216; has uuid &#8216;&#8216;, but the WC has &#8216;&#8216;</title>
		<link>http://allscm.com/archives/svn-the-repository-at-has-uuid-but-the-wc-has.html</link>
		<comments>http://allscm.com/archives/svn-the-repository-at-has-uuid-but-the-wc-has.html#comments</comments>
		<pubDate>Thu, 04 Aug 2011 19:03:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Subversion]]></category>

		<guid isPermaLink="false">http://allscm.com/?p=343</guid>
		<description><![CDATA[If you&#8217;ve ever tried to switch your current working copy to a new SVN URL with &#8216;svn switch &#8211;relocate [old_repo] [new_repo]&#8216; command you may run into an error message similar to this: svn: The repository at &#8216;[new_repo]&#8216; has uuid &#8216;[new_uuid]&#8216;, but the WC has &#8216;[old_uuid]&#8216; The reason for this is that Subversion expects the same [...]]]></description>
				<content:encoded><![CDATA[<p>If you&#8217;ve ever tried to switch your current working copy to a new SVN URL with &#8216;svn switch &#8211;relocate [old_repo] [new_repo]&#8216; command you may run into an error message similar to this:</p>
<p>svn: The repository at &#8216;[new_repo]&#8216; has uuid &#8216;[new_uuid]&#8216;, but the WC has &#8216;[old_uuid]&#8216;</p>
<p>The reason for this is that Subversion expects the same repository from the svn switch command and you wouldn&#8217;t run into this problem if you had done an <em>svnsync</em> on it.</p>
<p>At any rate, to solve the above error, you must do an svnadmin setuuid [path/to/new/repo] &#8216;[old_uuid]&#8216; on your new repo so that the uuid matches.  Hope that solves your problem.</p>
]]></content:encoded>
			<wfw:commentRss>http://allscm.com/archives/svn-the-repository-at-has-uuid-but-the-wc-has.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Could not find com.google.gwt.dev.Compiler. Make sure you have it in your classpath</title>
		<link>http://allscm.com/archives/could-not-find-com-google-gwt-dev-compiler-make-sure-you-have-it-in-your-classpath.html</link>
		<comments>http://allscm.com/archives/could-not-find-com-google-gwt-dev-compiler-make-sure-you-have-it-in-your-classpath.html#comments</comments>
		<pubDate>Wed, 13 Jul 2011 21:01:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Gradle]]></category>

		<guid isPermaLink="false">http://allscm.com/?p=340</guid>
		<description><![CDATA[If you ever run into an exception similar to the following: Execution failed for task &#8216;:common:gwt-utils:gwtCompile&#8217;. at org.gradle.api.internal.tasks.DefaultTaskExecuter.executeActions (DefaultTaskExecuter.java:66) at org.gradle.api.internal.tasks.DefaultTaskExecuter.execute(DefaultTaskExecuter.java:43) at org.gradle.api.internal.project.taskfactory.PostExecutionAnalysisTaskExecuter.execute (PostExecutionAnalysisTaskExecuter.java:32) at org.gradle.api.internal.project.taskfactory.ExecutionShortCircuitTaskExecuter.execute (ExecutionShortCircuitTaskExecuter.java:50) at org.gradle.api.internal.tasks.SkipTaskExecuter.doExecute(SkipTaskExecuter.java:57) at org.gradle.api.internal.tasks.SkipTaskExecuter.execute(SkipTaskExecuter.java:35) at org.gradle.api.internal.tasks.ExecuteAtMostOnceTaskExecuter.execute (ExecuteAtMostOnceTaskExecuter.java:32) at org.gradle.api.internal.AbstractTask.execute(AbstractTask.java:231) at org.gradle.execution.DefaultTaskGraphExecuter.executeTask (DefaultTaskGraphExecuter.java:167) at org.gradle.execution.DefaultTaskGraphExecuter.doExecute (DefaultTaskGraphExecuter.java:160) at org.gradle.execution.DefaultTaskGraphExecuter.execute (DefaultTaskGraphExecuter.java:78) at org.gradle.execution.TaskNameResolvingBuildExecuter.execute (TaskNameResolvingBuildExecuter.java:113) at org.gradle.execution.DelegatingBuildExecuter.execute (DelegatingBuildExecuter.java:54) at org.gradle.execution.DelegatingBuildExecuter.execute (DelegatingBuildExecuter.java:54) at [...]]]></description>
				<content:encoded><![CDATA[<p>If you ever run into an exception similar to the following:</p>
<blockquote><p>Execution failed for task &#8216;:common:gwt-utils:gwtCompile&#8217;.<br />
at org.gradle.api.internal.tasks.DefaultTaskExecuter.executeActions</p>
<p>(DefaultTaskExecuter.java:66)<br />
at org.gradle.api.internal.tasks.DefaultTaskExecuter.execute(DefaultTaskExecuter.java:43)<br />
at org.gradle.api.internal.project.taskfactory.PostExecutionAnalysisTaskExecuter.execute</p>
<p>(PostExecutionAnalysisTaskExecuter.java:32)<br />
at org.gradle.api.internal.project.taskfactory.ExecutionShortCircuitTaskExecuter.execute</p>
<p>(ExecutionShortCircuitTaskExecuter.java:50)<br />
at org.gradle.api.internal.tasks.SkipTaskExecuter.doExecute(SkipTaskExecuter.java:57)<br />
at org.gradle.api.internal.tasks.SkipTaskExecuter.execute(SkipTaskExecuter.java:35)<br />
at org.gradle.api.internal.tasks.ExecuteAtMostOnceTaskExecuter.execute</p>
<p>(ExecuteAtMostOnceTaskExecuter.java:32)<br />
at org.gradle.api.internal.AbstractTask.execute(AbstractTask.java:231)<br />
at org.gradle.execution.DefaultTaskGraphExecuter.executeTask</p>
<p>(DefaultTaskGraphExecuter.java:167)<br />
at org.gradle.execution.DefaultTaskGraphExecuter.doExecute</p>
<p>(DefaultTaskGraphExecuter.java:160)<br />
at org.gradle.execution.DefaultTaskGraphExecuter.execute</p>
<p>(DefaultTaskGraphExecuter.java:78)<br />
at org.gradle.execution.TaskNameResolvingBuildExecuter.execute</p>
<p>(TaskNameResolvingBuildExecuter.java:113)<br />
at org.gradle.execution.DelegatingBuildExecuter.execute</p>
<p>(DelegatingBuildExecuter.java:54)<br />
at org.gradle.execution.DelegatingBuildExecuter.execute</p>
<p>(DelegatingBuildExecuter.java:54)<br />
at org.gradle.initialization.DefaultGradleLauncher.doBuildStages</p>
<p>(DefaultGradleLauncher.java:153)<br />
at org.gradle.initialization.DefaultGradleLauncher.doBuild</p>
<p>(DefaultGradleLauncher.java:107)<br />
at org.gradle.initialization.DefaultGradleLauncher.run</p>
<p>(DefaultGradleLauncher.java:75)<br />
at org.gradle.launcher.RunBuildAction.execute(RunBuildAction.java:41)<br />
at org.gradle.launcher.RunBuildAction.execute(RunBuildAction.java:27)<br />
at org.gradle.launcher.CommandLineActionFactory$WithLoggingAction.execute</p>
<p>(CommandLineActionFactory.java:209)<br />
at org.gradle.launcher.CommandLineActionFactory$WithLoggingAction.execute</p>
<p>(CommandLineActionFactory.java:193)<br />
at org.gradle.launcher.Main.execute(Main.java:55)<br />
at org.gradle.launcher.Main.main(Main.java:40)<br />
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)<br />
at sun.reflect.NativeMethodAccessorImpl.invoke</p>
<p>(NativeMethodAccessorImpl.java:39)<br />
at sun.reflect.DelegatingMethodAccessorImpl.invoke</p>
<p>(DelegatingMethodAccessorImpl.java:25)<br />
at java.lang.reflect.Method.invoke(Method.java:597)<br />
at org.gradle.launcher.ProcessBootstrap.runNoExit(ProcessBootstrap.java:46)<br />
at org.gradle.launcher.ProcessBootstrap.run(ProcessBootstrap.java:28)<br />
at org.gradle.launcher.GradleMain.main(GradleMain.java:24)<br />
Caused by: : Java returned: 1</p></blockquote>
<p>-or-</p>
<blockquote><p>Could not find com.google.gwt.dev.Compiler. Make sure you have it in your classpath</p></blockquote>
<p>..and you&#8217;ve explored all options/fixes with no luck, perhaps you may be overlooking one elementary item. Is the project you&#8217;re trying to compile sitting in a <span style="color: #ff0000;">directory path with spaces</span>? If so, that&#8217;s your problem. It&#8217;s the age old Unix dislike for <span style="color: #ff0000;">spaces in directory</span>.</p>
]]></content:encoded>
			<wfw:commentRss>http://allscm.com/archives/could-not-find-com-google-gwt-dev-compiler-make-sure-you-have-it-in-your-classpath.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>svn: Failed to add directory &#8216;foo/foo&#8217;: an unversioned directory of the same name already exists</title>
		<link>http://allscm.com/archives/svn-failed-to-add-directory-foofoo-an-unversioned-directory-of-the-same-name-already-exists.html</link>
		<comments>http://allscm.com/archives/svn-failed-to-add-directory-foofoo-an-unversioned-directory-of-the-same-name-already-exists.html#comments</comments>
		<pubDate>Sat, 18 Sep 2010 00:42:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Source Control]]></category>
		<category><![CDATA[Subversion]]></category>

		<guid isPermaLink="false">http://allscm.com/?p=330</guid>
		<description><![CDATA[Ever gotten this Subversion checkout/update operation error message? svn: Failed to add directory &#8216;foo/foo&#8217;: an unversioned directory of the same name already exists You can fix this problem by applying an extra option of &#8220;&#8211;force&#8221; to the SVN&#8217;s checkout/update command.  This will mark the folder in question as updated and the subfolder files as versioned [...]]]></description>
				<content:encoded><![CDATA[<p>Ever gotten this Subversion checkout/update operation error message?</p>
<p>svn: Failed to add directory &#8216;foo/foo&#8217;: an unversioned directory of the same name already exists</p>
<p>You can fix this problem by applying an extra option of &#8220;&#8211;force&#8221; to the SVN&#8217;s checkout/update command.  This will mark the folder in question as updated and the subfolder files  as versioned but will not overwrite any of YOUR files in there.</p>
]]></content:encoded>
			<wfw:commentRss>http://allscm.com/archives/svn-failed-to-add-directory-foofoo-an-unversioned-directory-of-the-same-name-already-exists.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>p4:// &#8220;no permission for operation on files(s)&#8221; Problem?</title>
		<link>http://allscm.com/archives/p4-no-permission-for-operation-on-filess-problem.html</link>
		<comments>http://allscm.com/archives/p4-no-permission-for-operation-on-filess-problem.html#comments</comments>
		<pubDate>Mon, 13 Sep 2010 23:04:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Perforce]]></category>
		<category><![CDATA[Source Control]]></category>

		<guid isPermaLink="false">http://allscm.com/?p=328</guid>
		<description><![CDATA[If you ever tried to do an integration activity in Perforce and have gotten a similar error message such as &#8220;no permission for operation on files(s)&#8221; then these are the steps you can do to resolve the problem: Check to make sure your branch spec or the source/target does not have any typo. Check to [...]]]></description>
				<content:encoded><![CDATA[<p>If you ever tried to do an integration activity in Perforce and have gotten a similar error message such as &#8220;no permission for operation on files(s)&#8221; then these are the steps you can do to resolve the problem:</p>
<ol>
<li>Check to make sure your branch spec or the source/target does not have any typo.</li>
<li>Check to make sure you are branching within a source tree such as //softwareX/branches/1.0/&#8230; //softwareX/branches/1.1/&#8230; and <strong>NOT</strong> //softwareX/branches/1.0/&#8230; to //software<strong>Y</strong>/branches/1.1/&#8230;</li>
<li>Check p4 protect to make sure your account has write permission within that code line.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://allscm.com/archives/p4-no-permission-for-operation-on-filess-problem.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
