Problems with starling/workling in production mode - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T21:20:54Zhttp://stackoverflow.com/feeds/question/1003740http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1003740/problems-with-starling-workling-in-production-mode0Problems with starling/workling in production modeChris Drappier2009-06-16T20:17:51Z2009-06-29T17:36:26Z
<p>Hi All,</p>
<p>I have a rails app that has asynchronous processing, and I'm having trouble getting it to work in production mode. i start starling from the root of the application like so: </p>
<pre><code>starling -d -P tmp/pids/starling.pid -q log/
</code></pre>
<p>then i start workling like this</p>
<pre><code>./script/workling_client start -t
</code></pre>
<p>the first time i ran this, it complained because there was no development database, so i created a development database, and that error went away when i restarted workling.
but when i try to actually run an asynchronous process, i get this message in log/production.log</p>
<pre><code>Workling::QueueserverNotFoundError (config/workling.yml configured to connect to queue server on localhost:15151 for this environment. could not connect to queue server on this host:port. for starling users: pass starling the port with -p flag when starting it.
</code></pre>
<p>so, i run </p>
<pre><code>sudo killall starling
</code></pre>
<p>then restart starling from the root of the application like this:</p>
<pre><code>starling -d -P tmp/pids/starling.pid -q log/ -p 15151
</code></pre>
<p>which seems to work fine, but then when i try to start workling again with this script/workling_client start -t, i get this message in the console</p>
<pre><code>/var/rails-apps/daisi/vendor/plugins/workling/lib/workling/clients/memcache_queue_client.rb:68:in `raise_unless_connected!': config/workling.yml configured to connect to queue server on localhost:22122 for this environment. could not connect to queue server on this host:port. for starling users: pass starling the port with -p flag when starting it. If you don't want to use Starling, then explicitly set Workling::Remote.dispatcher (see README for an example) (Workling::QueueserverNotFoundError)
</code></pre>
<p>So, I tried changing the config/workling.yml file inside the workling plugin to make both production and development listen on 15151, that didn't work, then i tried both of them on 22122, still no dice, so i tried a random port, but it still gives the exact same behaviour no matter what I put in the workling.yml file </p>
<p>Plz Halp!</p>
<p>Thx</p>
<p>-C</p>
http://stackoverflow.com/questions/1003740/problems-with-starling-workling-in-production-mode/1059519#10595192Answer by Chris Drappier for Problems with starling/workling in production modeChris Drappier2009-06-29T17:36:26Z2009-06-29T17:36:26Z<p>the answer is that starling has to be started as such:</p>
<pre><code>RAILS_ENV=production ./script/workling_client start -t
</code></pre>