- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: HPJetAdmin Daemon not starting for HP-UX 11.0
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
06-22-2001 07:17 AM
06-22-2001 07:17 AM
HPJetAdmin Daemon not starting for HP-UX 11.0
is not starting successfully.
I have recently installed JetAdmin Rev. D.06.21 for Unix and I am unable to install network based printers. I check the log and it stats that:
/sbin/rc2.d/S900hpnpd[28]: 1007 Memory fault(coredump)
Is this suggesting bad memory chip??
When I try to install network printer, JetAdmin cannot resolve the IP address or Name? Hosts & aliases file are correct and I can Ping printer from #.
Any suggestions would be appreciated..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-22-2001 07:21 AM
06-22-2001 07:21 AM
Re: HPJetAdmin Daemon not starting for HP-UX 11.0
It can also happen by incompatable binaries, memory constraints in kernel etc..
It's typically not memory unless you see errors in the syslog reporting single bit errors.. and in that case lots more stuff would be crashing.
You might want to have a look at how much swap you have. swapinfo, top
Then try to start it manually:
/sbin/init.d/jetadmin start
This file is a script, start it manually after putting set -x in the line after #!/usr/bin/ksh
Bill
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-22-2001 08:33 AM
06-22-2001 08:33 AM
Re: HPJetAdmin Daemon not starting for HP-UX 11.0
Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-22-2001 08:34 AM
06-22-2001 08:34 AM
Re: HPJetAdmin Daemon not starting for HP-UX 11.0
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-22-2001 08:43 AM
06-22-2001 08:43 AM
Re: HPJetAdmin Daemon not starting for HP-UX 11.0
Line 28 of the S900 rc2 script is failing..
What is it refering to there?
/opt/hpnp/bin/jetadmin
Configuration script might be able to diagnose the problem also.
Bill
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-22-2001 10:51 AM
06-22-2001 10:51 AM
Re: HPJetAdmin Daemon not starting for HP-UX 11.0
#!/sbin/sh
# @(#) hpnpd.init - $Revision: 1.5 $
#
# Startup script to be placed in /sbin/init.d/hpnpd.
#
# /sbin/rc2.d/S90hpnpd is linked to /sbin/init.d/hpnpd.
# /sbin/rc1.d/K90hpnpd is linked to /sbin/init.d/hpnpd.
#
killproc() { # kill the named process(es)
pid=`/usr/bin/ps -e |
/usr/bin/grep $1 |
/usr/bin/sed -e 's/^ *//' -e 's/ .*//'`
[ "$pid" != "" ] && kill $pid
}
#
# Start/stop processes required for the hpnpd daemon
#
HPNPD=/opt/hpnp/bin/hpnpd
HPNPDR=/opt/hpnp/bin/hpnpdr
case "$1" in
'start')
if [ -x $HPNPD ]
then
$HPNPD > /dev/console 2>&1
fi
;;
'stop')
if [ -x $HPNPDR ]
then
$HPNPDR -k
else
killproc hpnpd
fi
;;
'start_msg')
echo "Starting JetAdmin Network Peripheral Daemon (hpnpd)"
;;
'stop_msg')
echo "Stopping JetAdmin Network Peripheral Daemon (hpnpd)"
;;
*)
echo "Usage: /sbin/init.d/hpnpd [start|stop|start_msg|stop_msg]"
;;
esac