- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Remote printer getting disabled automatically
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
05-28-2002 07:26 PM
05-28-2002 07:26 PM
I have a strange problem of printer getting disabled automaticaly once in 10 or 15 days. The printer is connected to the parallel port of NT Workstation which is running TCP/IP Printer Server and configured as a remote printer from HP-UX 11.0 System and BSD enabled.
There are no of remote printers configured to the HP-UX system like this and any one of the printer gets disabled randomly.What could be the problem?
Can you please throw some light on this issue to resolve.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-28-2002 11:19 PM
05-28-2002 11:19 PM
Re: Remote printer getting disabled automatically
Can you print from windows 98 PCs to the windows NT server through Printer share without any problems?.
regards,
U.SivaKumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-28-2002 11:25 PM
05-28-2002 11:25 PM
Re: Remote printer getting disabled automatically
Hilary
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-28-2002 11:52 PM
05-28-2002 11:52 PM
SolutionThe Remote Model Script
disables the printer if rlp returns an error -
/usr/sbin/rlp -I$requestid $BSDC $BSDJ $BSDT $BSDi $BSD1 $BSD2
$BSD3 $BSD4 $BSDw $BSDformat $BSDh $1
ret=$?
case $ret in
0)
exit 0
;;
*)
reason="error $ret returned"
;;
esac
disable -r"$reason" $printer
exit 1
if the remote machine is booting or the network times out you can get a disable.
An automatic recovery has been requested but does not exist at the moment.
lpstat -pname should indicate the reason
ex
# lpstat -pshb2lj18
printer shb2lj18 disabled since Dec 20 11:05 -
error 141 returned
fence priority : 0
This signal is not currently trapped by rlp,
which therefore causes rlp to terminate with an exit status of 141 (128 + 13).
This results in the printer being disabled with a reason code of "error 141
returned". SIGPIPE (signal 13)
Steve Steel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2002 12:31 AM
05-29-2002 12:31 AM
Re: Remote printer getting disabled automatically
Ensure that TCP/IP printing is enabled in your NT Worksation and While giving printing to remote printer, the printer should be in online status otherwise the printer queue will be disabled and also ensure that LPR Services are running in the NT Worksation.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2002 02:00 AM
05-29-2002 02:00 AM
Re: Remote printer getting disabled automatically
Steve Steel has given a very detailed explanation to find the cause for the problem.Since I have already added a script on cron to enable the printer automaticaly whenever it gets disabled I added one more line to find the return value of the error. Once I get the printer disable problem again I will be able to trace the problem.
Let us wait to get the error code.
Once again thanx for all.