CPU Performance Problems on VMWARE


 
Thread Tools Search this Thread
Operating Systems SCO CPU Performance Problems on VMWARE
# 8  
Old 09-08-2010
Thx, but howto find out which process was died?

And here is /etc/init.d/lpd startup script:
Code:
# cat /etc/init.d/lpd

#!/bin/sh

#"@(#)Copyright (C) 1994 by DS";
#"@(#)  $RCSfile: init.d_lpd,v $        $Revision: 1.1 $ $Date: 1995/04/19 05:37:22 $";

#
# $Log: init.d_lpd,v $
#    Revision 1.1  1995/04/19  05:37:22  root
#    Environmentvariable LPD_SLEEP und LPD_RETRIES eingefügt.
#
#    Revision 1.0  1995/02/23  13:36:24  root
#    Initial revision
#
#


#
# Control the line-printer daemon
#

PATH=/sbin:/usr/sbin:/usr/bin:/bin:/etc
export PATH
MSG1="Advanced Line Printer System started"
MSG2="Advanced Line Printer System stopped"
LOCK=/usr/adm/lpd.lock

LP_OPTS="-h"
export LP_OPTS

#LPD_SLEEP=2
#LPD_RETRIES=3
#export LPD_SLEEP LPD_RETRIES

case "$1" in
'start')
                set `who -r`
                if [ $9 = "S" ]; then
                        rm -f /dev/printer
                        if [ -x /usr/lbin/lpd ]
                        then
                                /usr/lbin/lpd -G
                                echo $MSG1
                        fi
                fi
                ;;
'stop')
                pid=`cat $LOCK`
                /bin/kill $pid 2>/dev/null
                echo $MSG2
                ;;
*)
        echo "usage: $0 {start|stop}"
        ;;
esac


It's quite interesting, if I stop or start lpd, I don't get any error messages:
Code:
# /etc/init.d/lpd stop
Advanced Line Printer System stopped
# /etc/init.d/lpd start
Advanced Line Printer System started

Even the same problem happens, if I start using /usr/lbin/lpd
Code:
# /usr/lbin/lpd
# ps -ef | grep lp
    root   289     1  0 18:16:38       ?    00:00:00 /opt/K/SCO/lli/5.0.6a/bin/dlpid /var/opt/K/SCO/lli/5.0.6a/dlpidPIPE
    root   314     1  0 18:16:38       ?    00:00:00 /usr/lib/lpsched
    root 22988     1 95 18:44:59       ?    00:00:21 /usr/lbin/lpd


Last edited by ccc; 09-08-2010 at 01:57 PM..
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. What is on Your Mind?

MySQL Performance Problems

Just restarted MySQL a few times. There seems to be a problem with MySQL performance because one table (our man page table) is too large and I need to move that table to a new database and out of the main forums DB. That table is over 7 GB, bigger than the rest of the DB combined: ... (14 Replies)
Discussion started by: Neo
14 Replies

2. AIX

CPU performance

In my oracle db server we have 15 cores (power8). The output of the vmstat is as below. System configuration: lcpu=128 mem=208800MB ent=16.00 kthr memory page faults cpu time -----------... (18 Replies)
Discussion started by: powerAIX
18 Replies

3. Solaris

Understanding & Monitoring CPU performance (Load vs SAR)

Hi all, Been reading a lot of the cpu load and its "analogy of it to car traffic path of expressway" From wiki Most UNIX systems count only processes in the running (on CPU) or runnable (waiting for CPU) states. However, Linux also includes processes in uninterruptible sleep states... (13 Replies)
Discussion started by: javanoob
13 Replies

4. UNIX for Advanced & Expert Users

SCO 6.0 & VMware problems

I've moved a physical server over to VMWare ESXi 5.1 using SCO 6.0 with MP4. For whatever reason, people are occasionally getting kicked out or are closing out their telnet session and it is leaving their processes running. When this happens, the sar %idle drops from 98-95% down to 25-20%. ... (1 Reply)
Discussion started by: Carlitos71
1 Replies

5. Shell Programming and Scripting

AIX CPU performance script ?

I want to write a shell script which will print AIX CPU utilization memory utilization every 5 mins redirect to file. How do i do it? Please advise. Which commands I should use? (3 Replies)
Discussion started by: vegasluxor
3 Replies

6. HP-UX

Performance - CPU spiking

We have a DB server which is constantly utilised above 95% above. This is becoming nuisance when the monitoring team frequently calls to check on it. Frankly I do not know what to tweak or even interpret the outputs. I noticed constant 30 to 60% in wio column of the cpu utilisation. There... (1 Reply)
Discussion started by: sundar63
1 Replies

7. UNIX for Advanced & Expert Users

Vmware 7 unixware 7.13 network problems

i need help, i will always accord mine if my scope allows me, help me in this one.. am running vmware 7.0 in winserver 2008 on a cq61-425el, my network driver is installed correctly. and my vmware network drivers have added as well (in the device manager section). During installation i wasnt... (0 Replies)
Discussion started by: baitz
0 Replies

8. HP-UX

Bad performance but Low CPU loading?

There might be some problem with my server, because every morning at 7, it's performance become bad with no DB extra deadlock. But I just couldn't figure it out. Please give me some advise, thanks a lot... According to the CPU performace chart, Daily CPU loading Maximum: 42 %, Average:36%. ... (8 Replies)
Discussion started by: GreenShery
8 Replies

9. Solaris

In Solaris Zones Dedicated-Cpu Performance?

Hi All, While creating zone we will mention min and max cpu cores, like add dedicated-cpu set ncpus=NUM_CPUS_MIN-NUM_CPUS_MAX end Ques1: Suppose thing that non global zone uses only minimum cores at particular time What the other cores will do, Will it shared to global zone? Ques:2... (1 Reply)
Discussion started by: vijaysachin
1 Replies

10. AIX

Performance Problem - High CPU utilization

Hello everybody. I have a problem with my AIX 5.3. Recently my unix shows a high cpu utilization with sar or topas. I need to find what I have to do to solve this problem, in fact, I don't know what is my problem. I had the same problem with another AIX 5.3 running the same... (2 Replies)
Discussion started by: wilder.mellotto
2 Replies
Login or Register to Ask a Question