<?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 Performance Problems in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/performance-problems/m-p/3340661#M190605</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;i have two identically equipped C3700 WS installed with the same OS-Load HP-UX 11.00 (installed from the same Ignite Server). But the users claim that one machine is significant slower than the other one. I checked very logfile and the hardware with stm, but cannot find a reason.&lt;BR /&gt;Are there some tools which i can use to get an objectiv view on the performance of the workstations? Maybe there are some problems (Hardware/Software), which cause the problem and i can find it, if i know in detail where the proformance get lost.</description>
    <pubDate>Mon, 26 Jul 2004 02:53:53 GMT</pubDate>
    <dc:creator>Heiner E. Lennackers</dc:creator>
    <dc:date>2004-07-26T02:53:53Z</dc:date>
    <item>
      <title>Performance Problems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/performance-problems/m-p/3340661#M190605</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;i have two identically equipped C3700 WS installed with the same OS-Load HP-UX 11.00 (installed from the same Ignite Server). But the users claim that one machine is significant slower than the other one. I checked very logfile and the hardware with stm, but cannot find a reason.&lt;BR /&gt;Are there some tools which i can use to get an objectiv view on the performance of the workstations? Maybe there are some problems (Hardware/Software), which cause the problem and i can find it, if i know in detail where the proformance get lost.</description>
      <pubDate>Mon, 26 Jul 2004 02:53:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/performance-problems/m-p/3340661#M190605</guid>
      <dc:creator>Heiner E. Lennackers</dc:creator>
      <dc:date>2004-07-26T02:53:53Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Problems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/performance-problems/m-p/3340662#M190606</link>
      <description>HI,&lt;BR /&gt;&lt;BR /&gt;1. Glance (this is the purchased product) is the best one to monitor System Performance.&lt;BR /&gt;2. #sar (System Activity Reporter) Use to monitor entire System Performance.&lt;BR /&gt;3. #iostat (Monitor Disk I/O)&lt;BR /&gt;4. #vmstat  (Monitor's Virtual Memory)&lt;BR /&gt;6. #top (Monitors CPU, Processes, memory)&lt;BR /&gt;7. #netstat ( MOnitor network )&lt;BR /&gt;&lt;BR /&gt;See man of all this command to learn more about them.&lt;BR /&gt;&lt;BR /&gt;Also find the attached doc on system performance which may guide you further.&lt;BR /&gt;&lt;BR /&gt;Hope that helps.&lt;BR /&gt;Regards,&lt;BR /&gt;</description>
      <pubDate>Mon, 26 Jul 2004 02:58:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/performance-problems/m-p/3340662#M190606</guid>
      <dc:creator>Bharat Katkar</dc:creator>
      <dc:date>2004-07-26T02:58:33Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Problems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/performance-problems/m-p/3340663#M190607</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;You got a good list there&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Also look at&lt;BR /&gt;&lt;BR /&gt;1)memory usage/swap see&lt;BR /&gt;Memory Usage - â  What is using all of the memoryâ  ?&lt;BR /&gt;&lt;BR /&gt;by:eric.herberholz@hp.com&lt;BR /&gt;&lt;BR /&gt;Last modified: July 23, 2004&lt;BR /&gt;&lt;BR /&gt;Latest version available at external ftp site:&lt;BR /&gt;&lt;BR /&gt;ftp://eh:spear9@hprc.external.hp.com/memory.htm &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;2)cpu and memory excesses&lt;BR /&gt;&lt;BR /&gt;Top cpu usage . 5 lines&lt;BR /&gt;&lt;BR /&gt;echo $_&lt;BR /&gt;&lt;BR /&gt;user=$1&lt;BR /&gt;&lt;BR /&gt;echo $user&lt;BR /&gt;&lt;BR /&gt;echo "  $(UNIX95= ps -e -o pcpu -o ruser -o sz -o vsz -opid -oppid -otty -o args|head -n1)"&lt;BR /&gt;&lt;BR /&gt;UNIX95= ps -e -o pcpu -o ruser -o sz -o vsz -opid -oppid -otty -o args|grep -v %CPU| sort -nr|tail -n +2|head -n 20|grep " "$user&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;top memory usage  39 lines&lt;BR /&gt;&lt;BR /&gt;     1  #RSZ = Resident set size&lt;BR /&gt;     2  #VSZ = Virtual set size&lt;BR /&gt;     3  #&lt;BR /&gt;     4  #RSZ is a subset of VSZ&lt;BR /&gt;     5  #-the portion of the processes memory which is 'resident'&lt;BR /&gt;     6  #in physical memory (ie not paged out).&lt;BR /&gt;     7  #&lt;BR /&gt;     8  #VSZ is the total size, including resident and non-resident pages.&lt;BR /&gt;     9  #&lt;BR /&gt;    10  #These values are totals, obtained by adding up the memory utilisation of the&lt;BR /&gt;    11  #processes various memory segments (of which there can be lots).&lt;BR /&gt;    12  #################################################################################&lt;BR /&gt;    13  uname -a&lt;BR /&gt;    14  echo -------------------------------------&lt;BR /&gt;    15  /bin/rm /tmp/$PPID 2&amp;gt;/dev/null&lt;BR /&gt;    16    if [ "$LOGNAME" = "root" ]&lt;BR /&gt;    17    then&lt;BR /&gt;    18       echo memory from kernel&lt;BR /&gt;    19       name=$(file /stand/vmunix|grep 64)&lt;BR /&gt;    20         if [ "$name" = "" ]&lt;BR /&gt;    21         then&lt;BR /&gt;    22             echo phys_mem_pages/D | adb /stand/vmunix /dev/kmem 2&amp;gt;/dev/null&lt;BR /&gt;    23             else&lt;BR /&gt;    24             echo phys_mem_pages/D | adb64 /stand/vmunix /dev/kmem 2&amp;gt;&amp;amp;1|grep -i page&lt;BR /&gt;    25          fi&lt;BR /&gt;    26     fi&lt;BR /&gt;    27&lt;BR /&gt;    28  echo " "&lt;BR /&gt;    29  echo swap&lt;BR /&gt;    30  echo -----------------&lt;BR /&gt;    31  swapinfo -tm&lt;BR /&gt;    32  echo " "&lt;BR /&gt;    33  echo memory usage per process&lt;BR /&gt;    34  echo "----------------------------------------------"&lt;BR /&gt;    35  UNIX95= ps -e -o ruser,vsz,sz,pid,args &amp;gt; /tmp/$PPID&lt;BR /&gt;    36  head -n 1 /tmp/$PPID&lt;BR /&gt;    37  tail -n +2 /tmp/$PPID|&lt;BR /&gt;    38  sort -rnk2&lt;BR /&gt;    39  /bin/rm /tmp/$PPID 2&amp;gt;/dev/null&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;3)Do&lt;BR /&gt;  swlist -l fileset -a state&lt;BR /&gt;&lt;BR /&gt; On both machines and check for identical output&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;        Steve</description>
      <pubDate>Mon, 26 Jul 2004 03:20:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/performance-problems/m-p/3340663#M190607</guid>
      <dc:creator>Steve Steel</dc:creator>
      <dc:date>2004-07-26T03:20:24Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Problems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/performance-problems/m-p/3340664#M190608</link>
      <description>As well as the above, I would suggest that you do a few simple tests to verify the data rates from different bits of hardware.&lt;BR /&gt;&lt;BR /&gt;1. Time how long it takes to FTP a 10Mb file to each server.   This may point to a slow network connection (Check network interface speed and duplex using lanadmin -x ..., plus see what else is on that LAN)&lt;BR /&gt;2. Time how long it takes to copy a file from one directory to another.&lt;BR /&gt;3. Compare the backup times.&lt;BR /&gt;4. Check that the users are running the same applications and that one isn't being asked to do a lot more than the other.&lt;BR /&gt;5. If you have a big application that is installed on both servers, then set up tests to time how long it takes to execute the same task.  For instance, a complex graphical rendering to test the graphics card etc.</description>
      <pubDate>Mon, 26 Jul 2004 07:33:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/performance-problems/m-p/3340664#M190608</guid>
      <dc:creator>Steve Lewis</dc:creator>
      <dc:date>2004-07-26T07:33:02Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Problems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/performance-problems/m-p/3340665#M190609</link>
      <description>Good suggestion above, the port switch settings could be causing the whole problem.&lt;BR /&gt;&lt;BR /&gt;Try this script set on both systems(attached) and look for other issues.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Mon, 26 Jul 2004 09:48:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/performance-problems/m-p/3340665#M190609</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2004-07-26T09:48:59Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Problems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/performance-problems/m-p/3340666#M190610</link>
      <description>Try nslookup on both machines to see if there are difference in name resolution.  Also, the name switch service could be different.</description>
      <pubDate>Mon, 26 Jul 2004 22:03:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/performance-problems/m-p/3340666#M190610</guid>
      <dc:creator>Ted Buis</dc:creator>
      <dc:date>2004-07-26T22:03:02Z</dc:date>
    </item>
  </channel>
</rss>

