<?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: pids_list: The specified subscript cannot be greater than 1024 in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/pids-list-the-specified-subscript-cannot-be-greater-than-1024/m-p/5004954#M696871</link>
    <description>Also, if you choose to try to debug this with a "set -x" keep in mind that you need to put the "set -x" statement right after the opening curly brace in the function(s) that you are interesting in tracing. A global "set -x" at the beginning of the control script will not display debug data inside a function. The four functions I can find that reference the pids_list variable are:&lt;BR /&gt;function activate_volume_group&lt;BR /&gt;function check_and_mount&lt;BR /&gt;function umount_fs&lt;BR /&gt;function deactivate_volume_group&lt;BR /&gt;&lt;BR /&gt;Probably only the first two are relevant at package startup.</description>
    <pubDate>Fri, 22 Sep 2006 13:58:49 GMT</pubDate>
    <dc:creator>Mike Chisholm</dc:creator>
    <dc:date>2006-09-22T13:58:49Z</dc:date>
    <item>
      <title>pids_list: The specified subscript cannot be greater than 1024</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/pids-list-the-specified-subscript-cannot-be-greater-than-1024/m-p/5004948#M696865</link>
      <description>when i try to start a PKG on one node i am getting this message in the PKG log file...i have verified it many times..but...&lt;BR /&gt;&lt;BR /&gt;/etc/cmcluster/DBPKG/DBPKG.sh[226]: pids_list: The specified subscript cannot be&lt;BR /&gt; greater than 1024.&lt;BR /&gt;&lt;BR /&gt;any suggestions</description>
      <pubDate>Fri, 22 Sep 2006 12:37:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/pids-list-the-specified-subscript-cannot-be-greater-than-1024/m-p/5004948#M696865</guid>
      <dc:creator>Lakshmikanth Baddam</dc:creator>
      <dc:date>2006-09-22T12:37:21Z</dc:date>
    </item>
    <item>
      <title>Re: pids_list: The specified subscript cannot be greater than 1024</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/pids-list-the-specified-subscript-cannot-be-greater-than-1024/m-p/5004949#M696866</link>
      <description>you need to look for pids_list in the shell script and see what it is looking at&lt;BR /&gt;</description>
      <pubDate>Fri, 22 Sep 2006 12:39:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/pids-list-the-specified-subscript-cannot-be-greater-than-1024/m-p/5004949#M696866</guid>
      <dc:creator>melvyn burnard</dc:creator>
      <dc:date>2006-09-22T12:39:28Z</dc:date>
    </item>
    <item>
      <title>Re: pids_list: The specified subscript cannot be greater than 1024</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/pids-list-the-specified-subscript-cannot-be-greater-than-1024/m-p/5004950#M696867</link>
      <description>I would possibly add a set -x to the top of your conttrol script and see if that helps pinpoint where this error is occuring, otherwise log a call with your local HP Response Centre&lt;BR /&gt;</description>
      <pubDate>Fri, 22 Sep 2006 12:51:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/pids-list-the-specified-subscript-cannot-be-greater-than-1024/m-p/5004950#M696867</guid>
      <dc:creator>melvyn burnard</dc:creator>
      <dc:date>2006-09-22T12:51:42Z</dc:date>
    </item>
    <item>
      <title>Re: pids_list: The specified subscript cannot be greater than 1024</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/pids-list-the-specified-subscript-cannot-be-greater-than-1024/m-p/5004951#M696868</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;Look around line number 226 in the script.  It appears that the script is trying to assign more than 1024 elements to an array in a 'set' statement like:&lt;BR /&gt;&lt;BR /&gt;# set -A pids_list ...&lt;BR /&gt;&lt;BR /&gt;The shell restricts subscripts for arrays to the range 0..1023.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Fri, 22 Sep 2006 12:54:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/pids-list-the-specified-subscript-cannot-be-greater-than-1024/m-p/5004951#M696868</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2006-09-22T12:54:36Z</dc:date>
    </item>
    <item>
      <title>Re: pids_list: The specified subscript cannot be greater than 1024</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/pids-list-the-specified-subscript-cannot-be-greater-than-1024/m-p/5004952#M696869</link>
      <description>This is the below lines in the PKG.sh file..&lt;BR /&gt;&lt;BR /&gt;   222  # completed.&lt;BR /&gt;   223  #&lt;BR /&gt;   224  # To allow mirror resynchronization to ocurr in parallel with&lt;BR /&gt;   225  # the package startup, uncomment the line&lt;BR /&gt;   226  # VXVOL="vxvol -g \$DiskGroup -o bg startall" and comment out the defaul&lt;BR /&gt;t.&lt;BR /&gt;   227  #&lt;BR /&gt;   228  # VXVOL="vxvol -g \$DiskGroup -o bg startall"&lt;BR /&gt;   229  VXVOL="vxvol -g \$DiskGroup startall"      # Default&lt;BR /&gt;   230&lt;BR /&gt;   231  # FILESYSTEM UNMOUNT COUNT&lt;BR /&gt;   232  # Specify the number of unmount attempts for each filesystem during pack&lt;BR /&gt;age&lt;BR /&gt;   233  # shutdown.  The default is set to 1.</description>
      <pubDate>Fri, 22 Sep 2006 13:00:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/pids-list-the-specified-subscript-cannot-be-greater-than-1024/m-p/5004952#M696869</guid>
      <dc:creator>Lakshmikanth Baddam</dc:creator>
      <dc:date>2006-09-22T13:00:01Z</dc:date>
    </item>
    <item>
      <title>Re: pids_list: The specified subscript cannot be greater than 1024</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/pids-list-the-specified-subscript-cannot-be-greater-than-1024/m-p/5004953#M696870</link>
      <description>Hi (again):&lt;BR /&gt;&lt;BR /&gt;If the line in question occurs within a function in the script at large, the reported line number will be relative to the beginning of that function.  As Melvyn suggested, start by looking for 'pids_list'.  Then look for a 'set' statement somewhere around line #226 of some function (subroutine).&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Fri, 22 Sep 2006 13:14:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/pids-list-the-specified-subscript-cannot-be-greater-than-1024/m-p/5004953#M696870</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2006-09-22T13:14:14Z</dc:date>
    </item>
    <item>
      <title>Re: pids_list: The specified subscript cannot be greater than 1024</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/pids-list-the-specified-subscript-cannot-be-greater-than-1024/m-p/5004954#M696871</link>
      <description>Also, if you choose to try to debug this with a "set -x" keep in mind that you need to put the "set -x" statement right after the opening curly brace in the function(s) that you are interesting in tracing. A global "set -x" at the beginning of the control script will not display debug data inside a function. The four functions I can find that reference the pids_list variable are:&lt;BR /&gt;function activate_volume_group&lt;BR /&gt;function check_and_mount&lt;BR /&gt;function umount_fs&lt;BR /&gt;function deactivate_volume_group&lt;BR /&gt;&lt;BR /&gt;Probably only the first two are relevant at package startup.</description>
      <pubDate>Fri, 22 Sep 2006 13:58:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/pids-list-the-specified-subscript-cannot-be-greater-than-1024/m-p/5004954#M696871</guid>
      <dc:creator>Mike Chisholm</dc:creator>
      <dc:date>2006-09-22T13:58:49Z</dc:date>
    </item>
    <item>
      <title>Re: pids_list: The specified subscript cannot be greater than 1024</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/pids-list-the-specified-subscript-cannot-be-greater-than-1024/m-p/5004955#M696872</link>
      <description>Thanks to all It's working fine.</description>
      <pubDate>Fri, 22 Sep 2006 16:28:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/pids-list-the-specified-subscript-cannot-be-greater-than-1024/m-p/5004955#M696872</guid>
      <dc:creator>Lakshmikanth Baddam</dc:creator>
      <dc:date>2006-09-22T16:28:18Z</dc:date>
    </item>
    <item>
      <title>Re: pids_list: The specified subscript cannot be greater than 1024</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/pids-list-the-specified-subscript-cannot-be-greater-than-1024/m-p/5004956#M696873</link>
      <description>Hi (again):&lt;BR /&gt;&lt;BR /&gt;...so what was your solution?  If we helped, what pointed you in the direction you took and most importantly, what did you do to correct your problem?&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Fri, 22 Sep 2006 16:48:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/pids-list-the-specified-subscript-cannot-be-greater-than-1024/m-p/5004956#M696873</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2006-09-22T16:48:24Z</dc:date>
    </item>
    <item>
      <title>Re: pids_list: The specified subscript cannot be greater than 1024</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/pids-list-the-specified-subscript-cannot-be-greater-than-1024/m-p/5004957#M696874</link>
      <description>Actually we had some syntax wrong in the script. just rectified it. It worked.</description>
      <pubDate>Fri, 22 Sep 2006 17:18:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/pids-list-the-specified-subscript-cannot-be-greater-than-1024/m-p/5004957#M696874</guid>
      <dc:creator>Lakshmikanth Baddam</dc:creator>
      <dc:date>2006-09-22T17:18:04Z</dc:date>
    </item>
    <item>
      <title>Re: pids_list: The specified subscript cannot be greater than 1024</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/pids-list-the-specified-subscript-cannot-be-greater-than-1024/m-p/5004958#M696875</link>
      <description>it solved my problem.</description>
      <pubDate>Mon, 25 Sep 2006 12:20:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/pids-list-the-specified-subscript-cannot-be-greater-than-1024/m-p/5004958#M696875</guid>
      <dc:creator>Lakshmikanth Baddam</dc:creator>
      <dc:date>2006-09-25T12:20:00Z</dc:date>
    </item>
  </channel>
</rss>

