Operating System - HP-UX
1748164 Members
3543 Online
108758 Solutions
New Discussion юеВ

Re: Re-direct print queue

 
SOLVED
Go to solution
AL_3001
Regular Advisor

Re-direct print queue

Hi Friends,

Our SAP team wants us to re-direct print jobs to a new printer TW18 (IP address 10.204.6.118) from the old printer TW13(IP address 10.204.3.5) as that old printer has been swapped out.

Kindly advise how should i go about it.

Thanks.

Regards,
Ashish
4 REPLIES 4
Pete Randall
Outstanding Contributor

Re: Re-direct print queue


Get rid of the old queue:
removequeue -f -q $OLDPRINTER

Then re-add the old queue name with the new IP:
addqueue -h 10.204.6.118) -q $OLDPRINTER -b off


Pete

Pete
Pete Randall
Outstanding Contributor

Re: Re-direct print queue

sorry - extra parenthesis:

addqueue -h 10.204.6.118 -q $OLDPRINTER -b off


Pete

Pete
Pete Randall
Outstanding Contributor
Solution

Re: Re-direct print queue

Let's just ignore those first two attempts and try that again:

Get rid of the old queue:
removequeue -f -q TW13

Then re-add the old queue name with the new IP:
addqueue -h 10.204.6.118) -q TW13 -b off


Pete

Pete
AL_3001
Regular Advisor

Re: Re-direct print queue

Thanks.