I'm just starting to play around with MogileFS. I got the latest from SVN installed and configured. I added test domain &amp; class but when I attempt to put a file in the system this is what happens:<br><br>#!/usr/bin/perl
<br>use MogileFS::Client;<br>my $mogfs = MogileFS::Client-&gt;new(domain =&gt; 'testdomain',<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; hosts&nbsp; =&gt; [ '<a href="http://192.168.0.20:6001">192.168.0.20:6001</a>' ]);<br>die &quot;Unable to initialize MogileFS object.\n&quot; unless $mogfs;
<br>my $fh = $mogfs-&gt;new_file(&quot;testkey&quot;, &quot;testclass&quot;);<br>print $mogfs-&gt;errstr();<br><br>It comes back with:<br>&nbsp;&nbsp;&nbsp; no_devices No devices found to store file<br><br>The domain &amp; class show up as showne blow but the storage device looks odd as it doesn't show total/free/used. Is there some place where i configure what the storage server can take up?
<br><br><br><br>mogadm --lib=/usr/local/share/perl/5.8.4 --trackers=<a href="http://192.168.0.20:6001">192.168.0.20:6001</a>,<a href="http://192.168.0.21:6001">192.168.0.21:6001</a> device list<br>mogilestorage1 [1]: alive
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; used(G) free(G) total(G)<br><br>mogadm --lib=/usr/local/share/perl/5.8.4 --trackers=<a href="http://192.168.0.20:6001">192.168.0.20:6001</a>, <a href="http://192.168.0.21:6001">192.168.0.21:6001</a>
 domain list<br>&nbsp;domain&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; class&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; mindevcount<br>-------------------- -------------------- -------------<br>&nbsp;testdomain&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; default&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0<br>&nbsp;testdomain&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; testclass&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2
<br>