Hi All,<br><br>I am using below rrdcgi script to display my graphs on webpage. It works fine when i pass the name=value pairs with my server name i.e. &quot;<a href="http://www.server.com/cgi-bin/rrdcgi.cgi?host=A1">http://www.server.com/cgi-bin/rrdcgi.cgi?host=A1</a>&quot;.<br>
<br>But when i try to execute this from command line it is not readting the name=value paris. i.e. &quot;$./rrdcgi.cgi host=A1&quot;<br><br>Code:<br>==============================<br>#!/usr/bin/rrdcgi<br>&lt;html&gt;<br>&lt;head&gt;<br>
&lt;title&gt;Graphs&lt;/title&gt;<br>&lt;/head&gt;<br>&lt;body&gt;<br>&lt;RRD::INCLUDE rrd.config&gt;<br>&lt;RRD::GRAPH<br>        &lt;RRD::GETVAR PATH&gt;/img/&lt;RRD::CV host&gt;.png<br>        --title=&quot;Load For &lt;RRD::CV host&gt;&quot;<br>
        -w 1048 -h 266<br>        --end=midnight<br>        --start=end-1d<br>        --imginfo &#39;&lt;IMG SRC=&lt;RRD::GETVAR PATH&gt;/rrdimg/%s WIDTH=%lu HEIGHT=%lu &gt;&#39;<br>        DEF:l=&lt;RRD::GETVAR PATH&gt;/host_&lt;RRD::CV host&gt;.rrd:load:AVERAGE<br>
        LINE2:l#0000ff:Load<br>&gt;<br>========================================<br>Please suggest what I am doing wrong.<br><br><br>