<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
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/"
> <channel><title>Comments on: How to Create an Erlang First Target System</title> <atom:link href="http://streamhacker.com/2009/07/02/how-to-create-an-erlang-first-target-system/feed/" rel="self" type="application/rss+xml" /><link>http://streamhacker.com/2009/07/02/how-to-create-an-erlang-first-target-system/#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed</link> <description>Weotta be Hacking</description> <lastBuildDate>Mon, 08 Mar 2010 21:22:02 -0800</lastBuildDate> <generator>http://wordpress.org/?v=2.9.2</generator> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <atom:link rel="hub" href="http://pubsubhubbub.appspot.com" /> <atom:link rel="hub" href="http://superfeedr.com/hubbub" /> <item><title>By: Jacob</title><link>http://streamhacker.com/2009/07/02/how-to-create-an-erlang-first-target-system/comment-page-1/#comment-314</link> <dc:creator>Jacob</dc:creator> <pubDate>Thu, 14 Jan 2010 16:34:50 +0000</pubDate> <guid isPermaLink="false">http://streamhacker.wordpress.com/?p=287#comment-314</guid> <description>Thanks, I&#039;m really glad this post has been helpful.</description> <content:encoded><![CDATA[<p>Thanks, I&#8217;m really glad this post has been helpful.</p> ]]></content:encoded> </item> <item><title>By: f00biebletch</title><link>http://streamhacker.com/2009/07/02/how-to-create-an-erlang-first-target-system/comment-page-1/#comment-313</link> <dc:creator>f00biebletch</dc:creator> <pubDate>Thu, 14 Jan 2010 15:59:16 +0000</pubDate> <guid isPermaLink="false">http://streamhacker.wordpress.com/?p=287#comment-313</guid> <description>I looked at create_target in system principles but this post is much more useful and accessible for a first time erlang releaser.  Incidentally, I initally created the release on a 32 bit dev machine and deployed out to a 64 bit stage machine which of course did not work well at all - I got cryptic libcrypto errors.  I&#039;m trying to be &quot;good&quot; and migrate an scp ebin/* + init.d system to proper erlang release handling, and this post has been by far the most helpful thing on the entire web.</description> <content:encoded><![CDATA[<p>I looked at create_target in system principles but this post is much more useful and accessible for a first time erlang releaser.  Incidentally, I initally created the release on a 32 bit dev machine and deployed out to a 64 bit stage machine which of course did not work well at all &#8211; I got cryptic libcrypto errors.  I&#8217;m trying to be &#8220;good&#8221; and migrate an scp ebin/* + init.d system to proper erlang release handling, and this post has been by far the most helpful thing on the entire web.</p> ]]></content:encoded> </item> <item><title>By: pablo</title><link>http://streamhacker.com/2009/07/02/how-to-create-an-erlang-first-target-system/comment-page-1/#comment-79</link> <dc:creator>pablo</dc:creator> <pubDate>Mon, 21 Sep 2009 21:44:32 +0000</pubDate> <guid isPermaLink="false">http://streamhacker.wordpress.com/?p=287#comment-79</guid> <description>I&#039;ve found several problems:
1. Without sys.config bin/start won&#039;t run.
2. I&#039;m using target_system module that automates all the steps you list here:
http://erlang.org/doc/system_principles/create_target.html#3
but I had to change the permissions of several files in the bin directory to executable.
3. In my case the path created by target_system was relative and it might also cause problems, so I changed it to absolute path in several places.Thanks</description> <content:encoded><![CDATA[<p>I&#8217;ve found several problems:<br /> 1. Without sys.config bin/start won&#8217;t run.<br /> 2. I&#8217;m using target_system module that automates all the steps you list here:<br /> <a href="http://erlang.org/doc/system_principles/create_target.html#3" rel="nofollow">http://erlang.org/doc/system_principles/create_target.html#3</a><br /> but I had to change the permissions of several files in the bin directory to executable.<br /> 3. In my case the path created by target_system was relative and it might also cause problems, so I changed it to absolute path in several places.</p><p>Thanks</p> ]]></content:encoded> </item> <item><title>By: pablo</title><link>http://streamhacker.com/2009/07/02/how-to-create-an-erlang-first-target-system/comment-page-1/#comment-78</link> <dc:creator>pablo</dc:creator> <pubDate>Mon, 21 Sep 2009 18:59:08 +0000</pubDate> <guid isPermaLink="false">http://streamhacker.wordpress.com/?p=287#comment-78</guid> <description>Jacob, I&#039;ve repeated all the steps from scratch but still getting:
No running Erlang on pipe /tmp/erlang.pipe.
The only thing I didn&#039;t do is set emulator flags because I&#039;m not sure what it means.Thanks</description> <content:encoded><![CDATA[<p>Jacob, I&#8217;ve repeated all the steps from scratch but still getting:<br /> No running Erlang on pipe /tmp/erlang.pipe.<br /> The only thing I didn&#8217;t do is set emulator flags because I&#8217;m not sure what it means.</p><p>Thanks</p> ]]></content:encoded> </item> <item><title>By: Jacob</title><link>http://streamhacker.com/2009/07/02/how-to-create-an-erlang-first-target-system/comment-page-1/#comment-77</link> <dc:creator>Jacob</dc:creator> <pubDate>Mon, 21 Sep 2009 16:42:42 +0000</pubDate> <guid isPermaLink="false">http://streamhacker.wordpress.com/?p=287#comment-77</guid> <description>Pablo, sounds like something&#039;s wrong or missing in bin/start. Make sure all the paths and commands exist. Could be that bin/start is referencing another command in bin/ that isn&#039;t there, such as start_erl or run_erl. Or maybe bin/start is working fine, but bin/to_erl is looking in the wrong directory.And you&#039;re right, I should add a sentence in step 8 about copying bin/to_erl.</description> <content:encoded><![CDATA[<p>Pablo, sounds like something&#8217;s wrong or missing in bin/start. Make sure all the paths and commands exist. Could be that bin/start is referencing another command in bin/ that isn&#8217;t there, such as start_erl or run_erl. Or maybe bin/start is working fine, but bin/to_erl is looking in the wrong directory.</p><p>And you&#8217;re right, I should add a sentence in step 8 about copying bin/to_erl.</p> ]]></content:encoded> </item> <item><title>By: pablo</title><link>http://streamhacker.com/2009/07/02/how-to-create-an-erlang-first-target-system/comment-page-1/#comment-76</link> <dc:creator>pablo</dc:creator> <pubDate>Mon, 21 Sep 2009 15:32:39 +0000</pubDate> <guid isPermaLink="false">http://streamhacker.wordpress.com/?p=287#comment-76</guid> <description>I think that copying bin/to_erl is missing.I&#039;m following all the steps but when trying:
bin/start
bin/to_erl
I&#039;m getting: No running Erlang on pipe /tmp/erlang.pipe.Any idea what I&#039;m doing wrong?Thanks</description> <content:encoded><![CDATA[<p>I think that copying bin/to_erl is missing.</p><p>I&#8217;m following all the steps but when trying:<br /> bin/start<br /> bin/to_erl<br /> I&#8217;m getting: No running Erlang on pipe /tmp/erlang.pipe.</p><p>Any idea what I&#8217;m doing wrong?</p><p>Thanks</p> ]]></content:encoded> </item> <item><title>By: Jacob</title><link>http://streamhacker.com/2009/07/02/how-to-create-an-erlang-first-target-system/comment-page-1/#comment-42</link> <dc:creator>Jacob</dc:creator> <pubDate>Sun, 02 Aug 2009 04:47:03 +0000</pubDate> <guid isPermaLink="false">http://streamhacker.wordpress.com/?p=287#comment-42</guid> <description>Could be something new in erts-5.7.2, which I hadn&#039;t tested with. I&#039;ll look into it, thanks for the heads up.</description> <content:encoded><![CDATA[<p>Could be something new in erts-5.7.2, which I hadn&#8217;t tested with. I&#8217;ll look into it, thanks for the heads up.</p> ]]></content:encoded> </item> <item><title>By: Matteo</title><link>http://streamhacker.com/2009/07/02/how-to-create-an-erlang-first-target-system/comment-page-1/#comment-41</link> <dc:creator>Matteo</dc:creator> <pubDate>Sat, 01 Aug 2009 19:17:14 +0000</pubDate> <guid isPermaLink="false">http://streamhacker.wordpress.com/?p=287#comment-41</guid> <description>Hi.Thank for the tutorial, it works :)Just one thing is strange: when I unpack FIRST.tar.gz, erts-5.7.2/bin/ contains start_erl.src instead of start_erl.It&#039;s not a big deal, a rename and chmod +x and everything works, but still.. why?Any idea? Thanks.</description> <content:encoded><![CDATA[<p>Hi.</p><p>Thank for the tutorial, it works <img src='http://streamhacker.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p><p>Just one thing is strange: when I unpack FIRST.tar.gz, erts-5.7.2/bin/ contains start_erl.src instead of start_erl.</p><p>It&#8217;s not a big deal, a rename and chmod +x and everything works, but still.. why?</p><p>Any idea? Thanks.</p> ]]></content:encoded> </item> <item><title>By: scrod</title><link>http://streamhacker.com/2009/07/02/how-to-create-an-erlang-first-target-system/comment-page-1/#comment-33</link> <dc:creator>scrod</dc:creator> <pubDate>Thu, 02 Jul 2009 18:39:46 +0000</pubDate> <guid isPermaLink="false">http://streamhacker.wordpress.com/?p=287#comment-33</guid> <description>Thanks for summarizing the process! Most Erlang/OTP tutorials neglect the critical deployment step, so this post is quite valuable.</description> <content:encoded><![CDATA[<p>Thanks for summarizing the process! Most Erlang/OTP tutorials neglect the critical deployment step, so this post is quite valuable.</p> ]]></content:encoded> </item> </channel> </rss>