<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: cpqlocfg hung in Server Management - Remote Server Management</title>
    <link>https://community.hpe.com/t5/server-management-remote-server/cpqlocfg-hung/m-p/4862030#M6019</link>
    <description>Daniel-&lt;BR /&gt;Are you able to ping this iLO?  It sounds as if your iLO is not accessible from your client.&lt;BR /&gt;&lt;BR /&gt;There is no hidden switches in cpqlocfg.&lt;BR /&gt;&lt;BR /&gt;James.</description>
    <pubDate>Sun, 03 Oct 2004 19:53:04 GMT</pubDate>
    <dc:creator>James Hughes_2</dc:creator>
    <dc:date>2004-10-03T19:53:04Z</dc:date>
    <item>
      <title>cpqlocfg hung</title>
      <link>https://community.hpe.com/t5/server-management-remote-server/cpqlocfg-hung/m-p/4862029#M6018</link>
      <description>I use the following command at cmd:&lt;BR /&gt;cpqlocfg -s 10.123.123.123 -f gu_2.xml -l o.txt -u admin -p password&lt;BR /&gt;&lt;BR /&gt;The syntex is correct as I've used it on many other server. After it was started, it just hung at "Connecting to Server.." and the output file has one line.&lt;BR /&gt;&lt;BR /&gt;IP Address is: 10.123.123.123&lt;BR /&gt;&lt;BR /&gt;Does anyone experience the same issue? I also wonder if this tool has hidden switches where you can enter a timeout.&lt;BR /&gt;&lt;BR /&gt;Thanks in advance!&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;*** For Q&amp;amp;A purposese, ip address, userid and password are not real.</description>
      <pubDate>Wed, 22 Sep 2004 09:51:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/server-management-remote-server/cpqlocfg-hung/m-p/4862029#M6018</guid>
      <dc:creator>Daniel Wong_5</dc:creator>
      <dc:date>2004-09-22T09:51:10Z</dc:date>
    </item>
    <item>
      <title>Re: cpqlocfg hung</title>
      <link>https://community.hpe.com/t5/server-management-remote-server/cpqlocfg-hung/m-p/4862030#M6019</link>
      <description>Daniel-&lt;BR /&gt;Are you able to ping this iLO?  It sounds as if your iLO is not accessible from your client.&lt;BR /&gt;&lt;BR /&gt;There is no hidden switches in cpqlocfg.&lt;BR /&gt;&lt;BR /&gt;James.</description>
      <pubDate>Sun, 03 Oct 2004 19:53:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/server-management-remote-server/cpqlocfg-hung/m-p/4862030#M6019</guid>
      <dc:creator>James Hughes_2</dc:creator>
      <dc:date>2004-10-03T19:53:04Z</dc:date>
    </item>
    <item>
      <title>Re: cpqlocfg hung</title>
      <link>https://community.hpe.com/t5/server-management-remote-server/cpqlocfg-hung/m-p/4862031#M6020</link>
      <description>The ilo ip is pingable.&lt;BR /&gt;&lt;BR /&gt;I wrote a qb program to go through 400 and soon will be 700 server ilos. The program reads from a txt file for server ip addresses. First it goes through a routine to ensure each ip is pingable then connect to ilo with cpqlocfg.&lt;BR /&gt;&lt;BR /&gt;For some reason, it always hung at the same ip.&lt;BR /&gt;&lt;BR /&gt;I just hoping that there might be some timeout switch for the tool.&lt;BR /&gt;&lt;BR /&gt;Thanks,</description>
      <pubDate>Mon, 04 Oct 2004 11:43:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/server-management-remote-server/cpqlocfg-hung/m-p/4862031#M6020</guid>
      <dc:creator>Daniel Wong_5</dc:creator>
      <dc:date>2004-10-04T11:43:41Z</dc:date>
    </item>
    <item>
      <title>Re: cpqlocfg hung</title>
      <link>https://community.hpe.com/t5/server-management-remote-server/cpqlocfg-hung/m-p/4862032#M6021</link>
      <description>Daniel,&lt;BR /&gt;  I'll submit feedback, but I am not optimistic about this making it in anytime soon.&lt;BR /&gt;&lt;BR /&gt;We've seen similar behavior when CPQLOCFG is pointed at an invalid IP address or to a host that does not reply.  The utility tries to open an SSL connection with the host:443, and the timeout (or lack thereof) seems to happen then.&lt;BR /&gt;&lt;BR /&gt;Also check that the SSL port for the web server has not been altered on your troublesome board.  CPQLOCFG can take the port number as an argument.&lt;BR /&gt;&lt;BR /&gt;Tip:&lt;BR /&gt;When you use CPQLOCFG iteratively with a bunch of iLOs, each script can take awhile to run, particularly when you have 400 or 700 iLOs to hit.  You can put the commands in a batch file, and this helps some, but the process is still linear: one iLO after another, and if there is a hiccup, you are in trouble.&lt;BR /&gt;&lt;BR /&gt;A faster way is for the batch file to spawn a bunch of other command windows, each can contact an iLO on its own.  And because the process is in parallel, it goes faster.  For example, instead of this:&lt;BR /&gt;&lt;BR /&gt;REM Windows firmware update batch file&lt;BR /&gt;cpqlocfg -s 192.168.1.1 -f flash.xml&lt;BR /&gt;cpqlocfg -s 192.168.1.2 -f flash.xml&lt;BR /&gt;cpqlocfg -s 192.168.1.3 -f flash.xml&lt;BR /&gt;cpqlocfg -s 192.168.1.4 -f flash.xml&lt;BR /&gt;cpqlocfg -s 192.168.1.5 -f flash.xml&lt;BR /&gt;cpqlocfg -s 192.168.1.6 -f flash.xml&lt;BR /&gt;cpqlocfg -s 192.168.1.7 -f flash.xml&lt;BR /&gt;cpqlocfg -s 192.168.1.8 -f flash.xml&lt;BR /&gt;&lt;BR /&gt;you could script it like this:&lt;BR /&gt;start cpqlocfg -s 192.168.1.1 -f flash.xml&lt;BR /&gt;start cpqlocfg -s 192.168.1.2 -f flash.xml&lt;BR /&gt;start cpqlocfg -s 192.168.1.3 -f flash.xml&lt;BR /&gt;start cpqlocfg -s 192.168.1.4 -f flash.xml&lt;BR /&gt;start cpqlocfg -s 192.168.1.5 -f flash.xml&lt;BR /&gt;...&lt;BR /&gt;you get the idea&lt;BR /&gt;&lt;BR /&gt;But an advantage would be that the instance that gets hung will not cripple all the other instances.  It will be a single command-window that does not close when it completes.  And that will draw attention to a problem node.&lt;BR /&gt;&lt;BR /&gt;Keep in mind that there is some limit to how many simultaneous command prompts you can spawn realistically.  You'll have to experiment to determine that.</description>
      <pubDate>Thu, 07 Oct 2004 18:52:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/server-management-remote-server/cpqlocfg-hung/m-p/4862032#M6021</guid>
      <dc:creator>acartes</dc:creator>
      <dc:date>2004-10-07T18:52:50Z</dc:date>
    </item>
    <item>
      <title>Re: cpqlocfg hung</title>
      <link>https://community.hpe.com/t5/server-management-remote-server/cpqlocfg-hung/m-p/4862033#M6022</link>
      <description>I don't think I got the support I needed from HP and the proposed suggestion is OK but not great simply because...&lt;BR /&gt;&lt;BR /&gt;1. issued submitted but no ETA for when it will be fixed = brushing me off&lt;BR /&gt;&lt;BR /&gt;2. with "start", there are other things to consider (like you've mentioned) such as...&lt;BR /&gt;&lt;BR /&gt;a. how to control the number of processes&lt;BR /&gt;b. if divided into serveral machines = more management overhead&lt;BR /&gt;&lt;BR /&gt;I apologize if you do not represent HP, this is HP's fault!</description>
      <pubDate>Thu, 07 Oct 2004 21:29:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/server-management-remote-server/cpqlocfg-hung/m-p/4862033#M6022</guid>
      <dc:creator>Daniel Wong_5</dc:creator>
      <dc:date>2004-10-07T21:29:57Z</dc:date>
    </item>
  </channel>
</rss>

