Hello.<br><br>This is my first post to the fedora list, don&#39;t know if this is the correct place to post my question to, if this is not, let me know.<br><br>I&#39;m trying to set up the pandora free monitoring system in one of my servers. 
<br>I have already set up the server and the web console without a problem. Besides that, I&#39;m trying to run the pandora agent in one of the remote servers, but I have found some troubles I don&#39;t know how to solve yet.
<br>I&#39;m running the agent in daemon mode, but when the XML is written it remains on the /opt/pandora_agent/data_out I&#39;ve set up as a temporal one, it&#39;s not copied to the server /opt/pandora_server/data_in/<br>
If I copy it manually using scp the server process the data smooth.<br>This is my pandora_agent.conf<br><br># General Parameters<br># ==================<br><br>server_ip&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <a href="http://10.30.7.134">10.30.7.134</a><br>
server_path&nbsp;&nbsp;&nbsp;&nbsp; /opt/pandora_server/data_in<br>pandora_path&nbsp;&nbsp;&nbsp; /opt/pandora_agent/<br>temporal&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /opt/pandora_agent/data_out<br>interval&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 600<br>debug&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1<br>checksum&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0<br><br><br># Module Definition
<br># =================<br><br># vmstat syntax depends on linux distro and vmstat command version, please check before use it<br>module_begin<br>module_name cpu_user<br>module_type generic_data<br>module_interval 1<br>module_exec vmstat 1 2 | tail -1 | awk &#39;{ print $14 }&#39;
<br>module_max 100<br>module_min 0<br>module_descripcion User CPU Usage (%)<br>module_end<br><br>module_begin<br>module_name cpu_sys<br>module_type generic_data<br>module_exec vmstat 1 2 | tail -1 | awk &#39;{ print $15 }&#39;
<br>module_max 100<br>module_min 0<br>module_description System CPU Usage (%)<br>module_end<br><br>module_begin<br>module_name disk_root_free<br>module_type generic_data<br>module_interval 2<br>module_exec df -kh / | tail -1 | awk &#39;{ print 100-$5 }&#39;
<br>module_max 100<br>module_min 0<br>module_description Free disk Percentage of root partition<br>module_end<br><br>module_begin<br>module_name memfree<br>module_type generic_data<br>module_exec cat /proc/meminfo&nbsp; | grep MemFree | awk &#39;{ print $2 }&#39;
<br>module_end<br><br>module_begin<br>module_name memused<br>module_type generic_data<br>module_exec cat /proc/meminfo | grep &quot;Active&quot;&nbsp; | awk &#39;{ print $2 }&#39;<br>module_end<br><br>Thank you all.<br><br>/Tomas
<br>