- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Any one know about HPUX Child Wrapper
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-06-2009 05:14 AM
07-06-2009 05:14 AM
Any one know about HPUX Child Wrapper
Hi,
Can someone shed some light on HPUX Child Wrapper? As we are having some performance issues on our databse server and I have noticed the process 'HPUXChildWrapper' process nearly consuming 90% of CPU.
Can any one explain what this process is ? and if its safe to kill it ? or restart ?
Thanks ...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-06-2009 05:20 AM
07-06-2009 05:20 AM
Re: Any one know about HPUX Child Wrapper
Never heard of it.
UNIX95=1
export UNIX95
ps -ef -o pid,sz,vsz,args | grep -i child
Lets see the script or program that started it up.
I can't assess the danger without knowing what it is. Goggle gives me nothing.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-06-2009 05:28 AM
07-06-2009 05:28 AM
Re: Any one know about HPUX Child Wrapper
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-12-2009 03:26 AM
08-12-2009 03:26 AM
Re: Any one know about HPUX Child Wrapper
Hi Guys, I poste dthis a while back, I seem to have this issue arising on my HPUX server again where the HPUX child Wrapper process is taking up nearly 90% of CPU. ANd recently we have had slow performace on the this databse server, so I am looking to get to the bottom of this HPUX Child Wrapper and understand if its okay to kill the process ? Will this cause any issues ? Can somone familar with this HPUX Child Srwapper process?
Thanks in Advance..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-12-2009 03:30 AM
08-12-2009 03:30 AM
Re: Any one know about HPUX Child Wrapper
Hope this helps!
Regards
Torsten.
__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.
__________________________________________________
No support by private messages. Please ask the forum!
If you feel this was helpful please click the KUDOS! thumb below!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-12-2009 03:53 AM
08-12-2009 03:53 AM
Re: Any one know about HPUX Child Wrapper
> UNIX95=1
> export UNIX95
> ps -ef -o pid,sz,vsz,args | grep -i child
I would _NOT_ export the UNIX95 variable into your environment. This may have side effects for various commands that you are unaware of and might not be desirable.
_INSTEAD_ set the variable only for the duration of the command line like this:
# UNIX95= ps -ef -o pid,sz,vsz,args | grep -i child
Notice that there is no space after the "=" operator and no value needs to be set for 'UNIX95'. Its declaration alone is sufficient and this syntax sets it only for the duration of the command line --- a safe, sane approach.
Regards!
...JRF...